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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.main-header {
    background: #ffffff;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7px;
}

.logo img {
    height: 80px;
    width: auto;
    margin: -10px 0;
}

.google-reviews-badge img {
    height: 165px;
    width: auto;
    margin: -20px 0;
}

/* Hide mobile-only badge on desktop */
.mobile-reviews-badge {
    display: none;
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    padding: 20px 0 10px 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 75px;
}

.hero-title {
    text-align: center;
    font-size: 69.1px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: #d4a520;
}

.hero-subtitle {
    text-align: center;
    font-size: 26px;
    color: #000;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Benefits Column */
.benefits-column {
    padding-right: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #d4a520;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.benefit-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* Form Column */
.form-column {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Form CTA Section */
.form-cta {
    margin-bottom: 25px;
}

.form-cta h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-cta p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    background: white;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #d4a520;
    box-shadow: 0 0 0 3px rgba(212, 165, 32, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

/* Submit Button */
.lead-form .submit-btn {
    background: #d4a520;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.lead-form .submit-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 32, 0.3);
}

.form-privacy {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.privacy-link {
    color: #4285f4;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.form-footer h3 {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        text-align: center;
    }

    .logo img {
        height: 70px;
        margin: 0 auto;
    }

    /* Hide badge in header on mobile - will show below form */
    .header-container .google-reviews-badge {
        display: none;
    }

    /* Hero Section Mobile */
    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 18px;
        padding: 0 15px;
        text-align: center;
        margin-bottom: 30px;
    }

    /* Content Grid Mobile */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    /* Benefits Mobile */
    .benefits-column {
        padding-right: 0;
        text-align: left;
    }

    .benefit-item {
        margin-bottom: 25px;
        align-items: center;
    }

    .benefit-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .benefit-content {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .form-column {
        padding: 30px 25px;
        border-radius: 12px;
        margin: 0 5px;
    }

    .form-cta {
        margin-bottom: 30px;
        text-align: center;
    }

    .form-cta h3 {
        font-size: 22px;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 10px;
        color: #2c3e50;
    }

    .form-cta p {
        font-size: 16px;
        text-align: center;
        line-height: 1.5;
        color: #666;
        margin-bottom: 5px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }

    .form-group input {
        padding: 15px 12px;
        font-size: 16px;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        transition: all 0.3s ease;
    }

    .form-group input:focus {
        border-color: #d4a520;
        box-shadow: 0 0 0 3px rgba(212, 165, 32, 0.15);
    }

    .lead-form .submit-btn {
        font-size: 18px;
        font-weight: 700;
        padding: 16px 24px;
        margin-top: 15px;
        border-radius: 8px;
        background: linear-gradient(135deg, #d4a520, #e6b732);
        box-shadow: 0 4px 15px rgba(212, 165, 32, 0.25);
        text-transform: none;
        letter-spacing: 0.5px;
    }

    .lead-form .submit-btn:hover {
        background: linear-gradient(135deg, #b8901b, #d4a520);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 165, 32, 0.35);
    }

    .form-privacy {
        text-align: center;
        margin-top: 20px;
        padding: 0 10px;
        font-size: 14px;
        line-height: 1.4;
    }

    .form-footer {
        text-align: center;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }

    .form-footer h3 {
        font-size: 16px;
        color: #333;
        font-weight: 500;
        margin: 0;
    }

    .privacy-link {
        color: #4285f4;
        text-decoration: none;
        font-weight: 500;
    }

    .privacy-link:hover {
        text-decoration: underline;
        color: #1a73e8;
    }

    /* Mobile Google Reviews Badge - Below Form */
    .mobile-reviews-badge {
        display: block;
        text-align: center;
        margin-top: 30px;
        padding: 20px 0;
    }

    .mobile-reviews-badge svg {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        display: block;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    }
}

.highlight {
    color: #d4a520;
}

.subheading {
    text-align: center;
    font-size: 22px;
    margin-bottom: 50px;
    padding: 0;
    color: #000;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits {
    padding-right: 20px;
}

.benefit-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #d4a520;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
    margin-top: 2px;
}

.benefit-content {
    flex: 1;
    font-size: 22px;
    line-height: 1.6;
}

.benefit-content strong {
    font-weight: 700;
    font-size: 23px;
}

.benefit-subtext {
    font-size: 18px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
    line-height: 1.4;
}

.form-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.lead-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
    letter-spacing: 0.3px;
}

.form-group input {
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.form-group input:hover {
    border-color: #d4a520;
}

.form-group input:focus {
    outline: none;
    border-color: #d4a520;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(212, 165, 32, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #d4a520, #e6b732);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #b8901b, #d4a520);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 32, 0.4);
}

.privacy-link {
    text-align: center;
    margin-top: 20px;
}

.privacy-link a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.privacy-link a:hover {
    color: #d4a520;
    text-decoration: underline;
}

.form-footer {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 100px;
    padding: 60px 0;
    background-color: #fafafa;
}

.section-label {
    text-align: center;
    font-size: 16.5px;
    color: #ffcc00;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.testimonials-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.testimonials-subheading {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

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

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.testimonial-card.full-width {
    width: 100%;
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.testimonial-avatar.small img {
    width: 60px;
    height: 60px;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text h3,
.testimonial-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-text p,
.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-stats {
    font-size: 18px;
    color: #777;
    font-style: italic;
    margin-top: 15px;
}

.testimonial-link {
    color: #1a73e8;
    text-decoration: none;
}

.testimonial-link:hover {
    text-decoration: underline;
}

.testimonials-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 20px;
    }

    .section-label {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .testimonials-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .testimonials-subheading {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .testimonials-row {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .testimonial-header {
        justify-content: center;
    }

    .testimonial-text h3,
    .testimonial-card h3 {
        font-size: 18px;
        text-align: center;
    }

    .testimonial-text p,
    .testimonial-card p {
        font-size: 16px;
        text-align: center;
    }

    .testimonial-avatar img {
        width: 60px;
        height: 60px;
    }
}

/* New Testimonial Styles for Updated Layout */
.testimonial-card-wide {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    border: 2px solid #f0f0f0;
}

.testimonial-quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 60px;
    color: #ffcc00;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.success-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.testimonial-avatar-large {
    flex-shrink: 0;
}

.testimonial-avatar-large img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
}

.testimonial-content-wide {
    flex: 1;
}

.testimonial-content-wide h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.testimonial-quote {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.testimonial-stats-line {
    font-size: 17px;
    color: #666;
    margin: 0;
}

.testimonial-stats-line em {
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.testimonial-box {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-quote-icon-small {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    color: #ffcc00;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.case-study-label {
    display: inline-block;
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
}

.testimonial-box-header {
    margin-bottom: 20px;
}

.testimonial-avatar-round {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-footer {
    font-size: 18px;
    color: #666;
    margin: 0;
    text-align: center;
}

.testimonial-footer em {
    font-style: italic;
}

.testimonial-handle {
    color: #1890ff;
    text-decoration: none;
}

.testimonial-handle:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    /* Testimonials Grid Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card-wide {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        align-items: center;
    }

    .testimonial-avatar-large {
        margin-bottom: 20px;
    }

    .testimonial-avatar-large img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .testimonial-avatar-round {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
    }

    .testimonial-content-wide h3 {
        font-size: 20px;
        text-align: center;
    }

    .testimonial-quote {
        font-size: 16px;
        text-align: center;
    }

    .testimonial-stats-line {
        font-size: 14px;
        text-align: center;
    }

    .testimonial-box {
        padding: 25px 20px;
    }

    .testimonial-name {
        font-size: 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-footer {
        font-size: 14px;
    }
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.bonuses-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;
    border: 2px solid #d4a520;
    border-radius: 20px;
    background-color: white;
}

.bonuses-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    margin-bottom: 40px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bonus-icon {
    font-size: 32px;
    margin-top: 5px;
    flex-shrink: 0;
}

.bonus-content {
    flex: 1;
}

.bonus-item h3 {
    font-size: 21px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.bonus-label {
    font-weight: 900;
    color: #d4a520;
    letter-spacing: 0.5px;
}

.bonus-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.bonus-value {
    background-color: #fef9e7;
    border: none;
    padding: 18px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 0 0;
    border-radius: 10px;
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto;
    padding: 18px 40px;
    background-color: #d4a520;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #b8901b;
}

/* Guarantee Section */
.guarantee-section {
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.guarantee-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #e8f4fd;
    border-radius: 20px;
    border: 2px solid #a8d4f4;
}

.guarantee-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.guarantee-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.guarantee-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.guarantee-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.guarantee-text strong {
    font-weight: 700;
    color: #333;
}


/* Masterclass Section */
.masterclass-section {
    padding: 40px 0;
    background-color: #ffffff !important;
    background: #ffffff !important;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 1;
}

section.masterclass-section {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

.masterclass-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.masterclass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.masterclass-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.masterclass-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.date-location {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.masterclass-description {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.spots-left {
    color: #d4a520;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.masterclass-btn {
    background-color: #d4a520;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.masterclass-btn:hover {
    background-color: #b8901b;
}

@media (max-width: 768px) {
    /* Bonuses Section Mobile */
    .bonuses-section {
        padding: 60px 15px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bonuses-container {
        padding: 30px 20px;
    }

    .bonuses-heading {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }

    .bonus-item {
        align-items: center;
        text-align: left;
    }

    .bonus-icon {
        font-size: 28px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        flex-shrink: 0;
    }

    .bonus-item h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .bonus-item p {
        font-size: 15px;
    }

    .bonus-value {
        font-size: 16px;
        padding: 15px;
        text-align: center;
    }

    /* Guarantee Section Mobile */
    .guarantee-section {
        padding: 40px 15px;
    }

    .guarantee-container {
        padding: 25px 20px;
    }

    .guarantee-heading {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .guarantee-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .guarantee-text p {
        font-size: 16px;
        text-align: center;
    }

    /* Masterclass Grid Mobile */
    .masterclass-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .masterclass-card {
        padding: 25px 20px;
    }

    .masterclass-card h3 {
        font-size: 20px;
    }

    .date-location {
        font-size: 14px;
    }

    .masterclass-description {
        font-size: 15px;
    }

    .spots-left {
        font-size: 16px;
    }

    .masterclass-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Graduate Success Story Section */
.graduate-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.graduate-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.graduate-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.graduate-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.2;
}

.graduate-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.graduate-quote {
    background-color: #fef9e7;
    border-left: 4px solid #d4a520;
    padding: 25px 30px;
    border-radius: 5px;
    margin-top: 30px;
}

.graduate-quote p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 15px !important;
    font-weight: 600;
    font-style: normal !important;
    color: #666 !important;
    text-align: right;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    /* Graduate Section Mobile */
    .graduate-section {
        padding: 60px 20px;
    }

    .graduate-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .graduate-content h2 {
        font-size: 26px;
        text-align: center;
        margin-bottom: 20px;
    }

    .graduate-content p {
        font-size: 16px;
        text-align: center;
    }

    .graduate-quote {
        padding: 20px;
        margin-top: 25px;
    }

    .graduate-quote p {
        font-size: 15px;
        text-align: left;
    }

    .quote-author {
        font-size: 14px !important;
        text-align: right;
    }
}

/* Ethan's Testimonial Section */
.ethan-testimonial {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.ethan-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ethan-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
}

.ethan-left {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.ethan-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f8f8;
}

.ethan-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating-stars {
    font-size: 18px;
    color: #f5b800;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.ethan-quote {
    margin-bottom: 30px;
}

.ethan-quote p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.ethan-quote em {
    font-style: italic;
    color: #555;
}

.highlight-text {
    color: #d4a520;
    font-weight: 700;
    font-style: normal;
}

.ethan-info {
    text-align: left;
}

.ethan-info h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #000;
}

.ethan-info p {
    font-size: 17px;
    color: #666;
    margin-bottom: 10px;
}

.verified-badge {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

/* All-Inclusive Masterclass Program Section */
.masterclass-program {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

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

.masterclass-heading {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    line-height: 1.2;
}

.masterclass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.masterclass-item {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.masterclass-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.masterclass-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.masterclass-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
}

.masterclass-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    /* Masterclass Program Mobile */
    .masterclass-program {
        padding: 60px 20px;
    }

    .masterclass-heading {
        font-size: 28px;
        margin-bottom: 35px;
        text-align: center;
    }

    .masterclass-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .masterclass-item {
        padding: 25px 20px;
        text-align: center;
    }

    .masterclass-icon {
        font-size: 36px;
        margin-bottom: 15px;
        text-align: center;
        display: block;
    }

    .masterclass-item h3 {
        font-size: 20px;
        text-align: center;
    }

    .masterclass-item p {
        font-size: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Ethan Testimonial Mobile */
    .ethan-testimonial {
        padding: 60px 15px;
    }

    .ethan-card {
        flex-direction: column;
    }

    .ethan-left {
        flex: none;
        padding: 30px 20px;
        text-align: center;
    }

    .ethan-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .ethan-right {
        padding: 20px 25px 30px;
    }

    .rating-stars {
        font-size: 16px;
        text-align: center;
        margin-bottom: 15px;
    }

    .ethan-quote p {
        font-size: 16px;
        text-align: center;
    }

    .ethan-info {
        text-align: center;
    }

    .ethan-info h4 {
        font-size: 18px;
        text-align: center;
    }

    .ethan-info p {
        font-size: 15px;
        text-align: center;
    }

    .verified-badge {
        margin: 0 auto;
        display: inline-block;
    }
}

/* Process Section */
.process-section {
    padding: 80px 20px 40px;
    background-color: #f8f8f8;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.process-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.process-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* What You'll Learn Section */
.learn-section {
    padding: 20px 20px 80px;
    margin-top: -40px;
    background-color: #f8f8f8;
}

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

.learn-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

/* New Step Cards Design */
.learn-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    position: relative;
}

.step-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.15);
    border: 2px solid #ffcc00;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
    flex-shrink: 0;
    line-height: 1;
    box-sizing: border-box;
    padding: 0;
}

.step-content {
    margin-top: 15px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.step-content strong {
    color: #ffcc00;
    font-weight: 600;
}

/* Connecting lines between steps */
.step-connector {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffcc00, #ffd966);
    z-index: -1;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -5px;
    top: -10px;
    color: #ffcc00;
    font-size: 20px;
}

.step-card:last-child .step-connector {
    display: none;
}

/* Ethan Showcase Styles */
.ethan-showcase {
    text-align: center;
    margin-bottom: 30px;
}

.ethan-showcase-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4a520;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.ethan-showcase-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ethan-showcase-text {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 15px;
}

.ethan-showcase-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    text-align: center;
}

.ethan-quote {
    font-style: italic;
    margin-bottom: 15px !important;
}

.ethan-showcase-text strong {
    color: #d4a520;
    font-weight: 700;
}

.ethan-name {
    font-style: italic;
    color: #666;
    font-size: 18px;
    margin-top: 15px;
}

/* Quiz Modal Styles */
.quiz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.quiz-modal.active {
    display: block;
}

.quiz-modal-content {
    position: relative;
    max-width: 700px;
    margin: 150px auto 50px;
    padding: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #000;
}

/* Quiz Container Styles */
.quiz-container {
    padding: 40px 0 0 0;
    background: white;
    border-radius: 15px;
    position: relative;
}

.quiz-progress {
    margin-bottom: 30px;
    padding: 0 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4a520 0%, #e6b732 100%);
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 25%;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 18px;
    color: #666;
    text-align: center;
    display: block;
}

.quiz-question {
    display: none;
    padding: 20px 40px;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.quiz-question.active {
    display: block;
    opacity: 1;
    transform: scale(1);
    animation: slideInFade 0.4s ease forwards;
}

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.quiz-question.exiting {
    opacity: 0;
    transform: translateX(-20px) scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Simplified fade animations - removed as we're using transitions instead */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-question h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.5;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.quiz-option:hover {
    border-color: #d4a520;
    background: #fffaf0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 32, 0.15);
}

.quiz-option input[type="radio"] {
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #d4a520;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.quiz-option input[type="radio"]:checked {
    accent-color: #d4a520;
}

.quiz-option input[type="radio"]:checked + span {
    font-weight: 600;
    color: #d4a520;
    transition: all 0.3s ease;
}

/* Quiz Completion Message Styles */
.quiz-completion-message {
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.4s ease;
}

.completion-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.quiz-completion-message h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.quiz-completion-message p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #d4a520;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-option span {
    font-size: 18px;
    color: #555;
    line-height: 1.4;
}

.quiz-navigation {
    margin-top: 40px;
    padding: 0 40px 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.quiz-nav-btn {
    background: #d4a520;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-nav-btn:hover:not(:disabled) {
    background: #b8901b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 32, 0.3);
}

.quiz-back-btn {
    background: transparent;
    color: #d4a520;
    border: 2px solid #d4a520;
}

.quiz-back-btn:hover {
    background: #d4a520;
    color: white;
}

.quiz-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Lead Form Container */
.lead-form-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 20px 25px;
    background: white;
    border-radius: 15px;
    position: relative;
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lead-form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4a520, #e6b732);
    border-radius: 15px 15px 0 0;
}

.form-icon {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.lead-form-container h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 700;
}

.lead-form-container > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

/* Quiz Start Button */
.quiz-start-btn {
    margin-top: 20px;
    background-color: #d4a520;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.quiz-start-btn:hover {
    background-color: #b8901b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 32, 0.3);
}

.career-btn {
    display: block;
    margin: 0 auto;
}

/* SMP Training Section */
.smp-training-section {
    padding: 80px 20px;
    background-color: white;
}

.smp-training-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.training-label {
    color: #d4a520;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.smp-training-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.2;
}

.smp-training-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.smp-training-content .cta-button {
    margin-left: 0;
}

.smp-training-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Turn Your Passion Section */
.passion-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.passion-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.passion-content {
    flex: 1;
}

.passion-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.passion-heading .highlight {
    color: #d4a520;
}

.passion-subtext {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.passion-features {
    margin-bottom: 40px;
}

.passion-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.passion-feature .checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #d4a520;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 18px;
}

.passion-feature span:last-child {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.passion-section .cta-button {
    background: linear-gradient(135deg, #d4a520 0%, #b8941b 100%);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
}

.passion-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 32, 0.4);
}

.passion-image {
    flex: 1;
    max-width: 500px;
}

.passion-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    color: #333;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-question span:first-child {
    flex: 1;
    font-size: 18px;
    color: #2c3e50;
}

/* Reviews Section Styles */
.reviews-section {
    padding: 60px 0;
    background: #ffffff;
    width: 100%;
}

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

.reviews-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.reviews-grid {
    column-count: 3;
    column-gap: 20px;
    margin-top: 40px;
}

.review-image-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.review-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Adjust columns for medium screens */
@media (max-width: 1024px) {
    .reviews-grid {
        column-count: 2;
    }
}

/* Additional Mobile Button Styles */
@media (max-width: 768px) {
    .cta-button {
        font-size: 16px;
        padding: 14px 30px;
        width: auto;
        max-width: 100%;
    }

    .submit-btn {
        font-size: 16px;
        padding: 12px;
    }

    button {
        font-size: 16px;
    }
}

/* Reviews CTA Section */
.reviews-cta {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-mission {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 30px;
}

.reviews-assurance {
    font-size: 18px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-button-reviews {
    display: inline-block;
    background: linear-gradient(135deg, #d4a520 0%, #f4c430 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
}

.cta-button-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 165, 32, 0.4);
    background: linear-gradient(135deg, #c49520 0%, #e4b420 100%);
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 15px;
    }

    .reviews-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .reviews-grid {
        column-count: 1;
        column-gap: 0;
    }

    .review-image-card {
        max-width: 100%;
    }

    .reviews-cta {
        padding: 40px 15px 30px;
    }

    .reviews-mission,
    .reviews-assurance {
        font-size: 18px;
    }

    .cta-button-reviews {
        font-size: 18px;
        padding: 15px 40px;
    }
}

.faq-toggle {
    font-size: 20px;
    color: #d4a520;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                transform 0.4s ease,
                padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

@media (max-width: 768px) {
    /* Process Section Mobile */
    .process-section {
        padding: 60px 15px 30px;
    }

    .process-heading {
        font-size: 28px;
        margin-bottom: 40px;
        text-align: center;
    }

    .process-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-images img {
        height: 200px;
    }

    /* Learn Section Mobile */
    .learn-section {
        padding: 20px 15px 60px;
    }

    .learn-heading {
        font-size: 26px;
        margin-bottom: 40px;
        text-align: center;
    }

    /* Step Cards Mobile */
    .learn-steps {
        flex-direction: column;
        gap: 35px;
        margin: 40px 0;
    }

    .step-card {
        width: 100%;
        padding: 30px 20px 25px;
        min-height: 150px;
    }

    .step-connector {
        display: none;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
        width: 45px !important;
        height: 45px !important;
        font-size: 20px;
    }

    .step-content {
        margin-top: 20px;
        text-align: center;
    }

    .step-content h3 {
        font-size: 20px;
        text-align: center;
    }

    .step-content p {
        font-size: 15px;
        text-align: center;
    }

    /* Ethan Showcase Mobile */
    .ethan-showcase {
        text-align: center;
        margin-bottom: 25px;
    }

    .ethan-showcase-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto 15px;
    }

    .ethan-showcase-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .ethan-showcase-text p {
        font-size: 16px;
        text-align: center;
    }

    .ethan-name {
        font-size: 16px;
    }

    /* SMP Training Mobile */
    .smp-training-section {
        padding: 60px 20px;
    }

    .smp-training-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .training-label {
        font-size: 14px;
        text-align: center;
    }

    .smp-training-content {
        text-align: center;
    }

    .smp-training-content h2 {
        font-size: 26px;
        text-align: center;
    }

    .smp-training-content p {
        font-size: 16px;
        text-align: center;
    }

    .smp-training-content .cta-button {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Passion Section Mobile */
    .passion-section {
        padding: 60px 15px;
    }

    .passion-container {
        flex-direction: column;
        gap: 30px;
    }

    .passion-heading {
        font-size: 28px;
        text-align: center;
    }

    .passion-subtext {
        font-size: 16px;
        text-align: center;
    }

    .passion-features {
        margin-bottom: 30px;
    }

    .passion-feature {
        align-items: center;
        margin-bottom: 15px;
    }

    .passion-feature .checkmark {
        width: 24px;
        height: 24px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .passion-feature span:last-child {
        font-size: 16px;
    }

    .passion-section .cta-button {
        display: block;
        margin: 0 auto;
        font-size: 16px;
    }

    .passion-image {
        max-width: 100%;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: 60px 15px;
    }

    .faq-container h2 {
        font-size: 28px;
        margin-bottom: 35px;
        text-align: center;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-toggle {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 15px;
        padding: 0 20px 15px;
    }

    /* General Mobile Styles */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 28px;
        text-align: center;
    }

    .subheading {
        font-size: 16px;
        text-align: center;
        padding: 0 20px;
    }

    header {
        flex-direction: column;
        gap: 15px;
    }

    .benefits {
        padding-right: 0;
    }

    .benefit-item {
        align-items: center;
    }

    .checkmark {
        width: 24px;
        height: 24px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .benefit-content {
        font-size: 16px;
    }

    .benefit-content strong {
        font-size: 17px;
    }

    .benefit-subtext {
        font-size: 14px;
    }

    /* Quiz Mobile Styles */
    .quiz-modal-content {
        margin: 20px;
        margin-top: 60px;
        max-width: calc(100% - 40px);
    }

    .quiz-container {
        padding-top: 30px;
    }

    .quiz-progress {
        padding: 0 25px;
    }

    .progress-text {
        font-size: 14px;
    }

    .quiz-question {
        padding: 20px 25px;
    }

    .quiz-question h3 {
        font-size: 18px;
        text-align: center;
    }

    .quiz-options {
        gap: 12px;
    }

    .quiz-option {
        padding: 14px;
        align-items: center;
    }

    .quiz-option input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .quiz-option span {
        font-size: 16px;
        line-height: 1.4;
    }

    .quiz-navigation {
        padding: 0 25px 25px 25px;
        margin-top: 25px;
        flex-direction: column-reverse;
        gap: 12px;
    }

    .quiz-nav-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    .quiz-back-btn {
        width: 100%;
    }

    /* Quiz Completion Mobile */
    .quiz-completion-message {
        padding: 40px 20px;
    }

    .completion-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .quiz-completion-message h3 {
        font-size: 24px;
        text-align: center;
    }

    .quiz-completion-message p {
        font-size: 16px;
        text-align: center;
    }

    /* Lead Form Mobile */
    .lead-form-container {
        padding: 20px;
    }

    .form-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .lead-form-container h3 {
        font-size: 20px;
        text-align: center;
    }

    .lead-form-container > p {
        font-size: 14px;
        text-align: center;
    }

    .quiz-start-btn {
        font-size: 16px;
        padding: 14px 30px;
    }
}

/* World-Class SMP Artist Section */
.world-class-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
}

.world-class-container {
    max-width: 900px;
    margin: 0 auto;
}

.world-class-heading {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.world-class-description {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.world-class-cta {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff5522 100%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.world-class-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* The All-Inclusive Masterclass Program Section */
.masterclass-program-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.masterclass-program-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.masterclass-program-container {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.masterclass-program-heading {
    font-size: 42px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.masterclass-program-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.masterclass-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.masterclass-feature-card {
    background: white;
    padding: 28px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.masterclass-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFC700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.masterclass-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2), 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.25);
}

.masterclass-feature-card:hover::before {
    transform: scaleX(1);
}

.masterclass-feature-icon {
    font-size: 44px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.25));
}

.masterclass-feature-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 14px;
}

.masterclass-feature-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    /* World Class Section Mobile */
    .world-class-section {
        padding: 60px 20px;
    }

    .world-class-heading {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    .world-class-description {
        font-size: 16px;
        text-align: center;
        padding: 0 15px;
    }

    .world-class-cta {
        font-size: 16px;
        padding: 14px 35px;
    }

    /* Masterclass Program Section Mobile */
    .masterclass-program-section {
        padding: 60px 15px;
    }

    .masterclass-program-heading {
        font-size: 28px;
        margin-bottom: 35px;
        text-align: center;
    }

    .masterclass-program-heading::after {
        width: 60px;
    }

    .masterclass-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .masterclass-feature-card {
        padding: 25px 20px;
        text-align: center;
    }

    .masterclass-feature-icon {
        font-size: 36px;
        margin-bottom: 15px;
        text-align: center;
        display: block;
    }

    .masterclass-feature-card h3 {
        font-size: 20px;
        text-align: center;
    }

    .masterclass-feature-card p {
        font-size: 15px;
        text-align: center;
    }
}