/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f0f0f0;
}

/* Hero Section */
.hero {
    background: url('images/hero-uk-market.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #f4a261;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 2rem;
    text-align: center;
    background-color: #f7f7f7;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 2rem;
    background-color: #fefae0;
}

.benefits h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.benefits ul {
    list-style-type: none;
    text-align: center;
}

.benefits li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* YouTube Section Styling */
.video {
    padding: 2rem;
    text-align: center;
    background-color: #f7f7f7;
}

.video h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #264653;
}

/* Grid for YouTube Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

/* Styling the Video Containers */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Hover effect for the videos */
.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Meet Your Hosts Section */
.meet-hosts {
    padding: 3rem 2rem;
    background-color: #f1f1f1;
}

.meet-hosts h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.host {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.host h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.host p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Partner Section */
.partners {
    padding: 3rem 2rem;
    background-color: #e6e6e6;
}

.partners h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.partners .logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.partners .logo-grid img {
    width: 150px;
    height: auto;
    border-radius: 5px;
}

/* FAQ Section */
.faq {
    padding: 3rem 2rem;
    background-color: #fff;
    border-top: 2px solid #e0e0e0;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.faq .faq-item {
    margin-bottom: 1.5rem;
}

.faq .faq-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.faq .faq-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
}

/* Join Us Section */
.join-us {
    padding: 2rem;
    background-color: #e76f51;
    color: white;
    text-align: center;
}

.join-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-us p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    padding: 1rem;
    background-color: #264653;
    color: white;
    text-align: center;
}

/* Contact Us Section Styling */
.contact-us {
    padding: 2rem;
    text-align: center;
    background-color: #f7f7f7;
    color: #264653;
}

.contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-us p {
    font-size: 1.2rem;
}

.contact-link {
    color: #e76f51;
    text-decoration: none;
}

.contact-link:hover {
    color: #f4a261;
    text-decoration: underline;
}

/* Footer Link Styling */
.footer-link {
    color: #f4a261;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    color: #e76f51;
    text-decoration: underline;
}
