/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #161B21;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #161B21;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
    color: #25686B;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 18px;
    color: #161B21;
}

/* Buttons */
.btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #2B8B8B;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #25686B;
}

.btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #2B8B8B;
    background-color: transparent;
    border: 2px solid #2B8B8B;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #2B8B8B;
    color: #FFFFFF;
}

/* Navigation Bar */
.navbar {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #161B21;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #161B21;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2B8B8B;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #161B21;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #F5F7FA;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.testimonials {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background-color: #F5F7FA;
    border-radius: 8px;
    text-align: center;
}

.tutor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Problem/Pain Points Section */
.pain-points-section {
    padding: 80px 0;
    background-color: #F5F7FA;
}

.pain-points-section h2 {
    text-align: center;
}

.pain-points-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.pain-point-item {
    flex: 1;
    margin: 10px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    text-align: center;
}

.pain-point-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

/* Solution/Value Proposition Section */
.solution-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.solution-section h2 {
    text-align: center;
}

.solution-features {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.feature-box {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background-color: #F5F7FA;
    border-radius: 8px;
    text-align: center;
}

.feature-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

/* Lead Magnet Offer Section */
.lead-magnet-section {
    padding: 10px 0;
    background-color: #F5F7FA;
    text-align: center;
}

.lead-magnet-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lead-magnet-content {
    flex: none;
    padding-right: 0;
    max-width: 800px;
    margin-bottom: 0;
}

.lead-magnet-content h2,
.lead-magnet-content p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.lead-magnet-content p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.lead-magnet-content img {
    display: block;
    margin: 1.5rem auto 0 auto;
    max-width: 100%;
    height: auto;
}

.lead-magnet-content p:last-of-type {
    margin-bottom: 0;
}

.lead-magnet-form {
    flex: 1;
}

.lead-magnet-form form {
    display: flex;
    flex-direction: column;
}

.lead-magnet-form input,
.lead-magnet-form select {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.small-print {
    font-size: 12px;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Podcast Highlights Section */
.podcast-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.podcast-episodes {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.episode-card {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background-color: #F5F7FA;
    border-radius: 8px;
    text-align: center;
}

.episode-artwork {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.podcast-platforms {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.podcast-platforms img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/* About the Host Section */
.about-section {
    padding: 80px 0;
    background-color: #F5F7FA;
}

.about-section .container {
    display: flex;
    align-items: center;
}

.host-photo {
    flex: 1;
    text-align: center;
}

.host-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.host-bio {
    flex: 1;
    padding-left: 40px;
}

/* Final Call-to-Action Section */
.final-cta-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
    margin-bottom: 80px;
}

.final-cta-section p {
    margin-bottom: 30px;
}

.cta-buttons {
    margin-top: 30px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: #161B21;
    color: #FFFFFF;
    padding: 40px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 20px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-section .container,
    .about-section .container {
        flex-direction: column;
    }

    .hero-content,
    .host-bio {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 40px;
    }

    .testimonials,
    .pain-points-list,
    .solution-features,
    .podcast-episodes {
        flex-direction: column;
    }

    .testimonial-card,
    .pain-point-item,
    .feature-box,
    .episode-card {
        margin: 10px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Lead Magnet CTA Styles */
.lead-magnet-cta {
    text-align: center;
    margin: 0;
}

.lead-magnet-cta .btn-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    max-width: 500px;
    margin: 0 auto;
}

.lead-magnet-cta .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lead-magnet-cta .btn-text {
    margin-bottom: 0.5rem;
}

.lead-magnet-cta .btn-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.episode-card .btn-secondary {
    margin-top: 20px;
    display: inline-block;
} 