/* Course Page Specific Styles */

/* Header Styles */
.course-header {
    background-color: #383d4b;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header-text {
    color: #ffffff;
    font-family: "Calibri", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-right {
    flex-shrink: 0;
}

.header-cta {
    background-color: #506157;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-family: "Calibri", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.header-cta:hover {
    background-color: #3c4d43;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background-color: #ffffff;
    padding: 2rem 2rem 0 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.375rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.highlight-yellow {
    background-color: #ffd700;
    padding: 0.25rem 0.5rem;
    display: inline-block;
    border-radius: 4px;
}

.hero-subtitle {
    font-family: "Georgia", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.1;
}

.highlight-blue {
    background-color: #87ceeb;
    padding: 0.25rem 0.5rem;
    display: inline-block;
    border-radius: 4px;
}

.hero-tagline {
    font-family: "Calibri", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #504F4F;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-family: "Calibri", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #504F4F;
    margin: 0;
}

.hero-description-large {
    font-size: 1.5rem;
    font-family: "Calibri", sans-serif;
}

.hero-cta {
    align-self: flex-start;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 1.1rem;
    text-align: center;
    width: 75%;
}

/* Hero Follow-up Section */
.hero-follow-up-section {
    background-color: #ffffff;
    padding: 0 1rem;
    width: 100%;
    margin: 0;
}

.hero-follow-up {
    font-family: "Calibri", sans-serif;
    font-size: 2rem;
    line-height: 1.6;
    color: #504F4F;
    margin: 0;
    text-align: center;
    font-weight: 500;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    max-height: 650px;
}

/* Audience Sections */
.audience-section {
    padding: 4rem 2rem;
}

.audience-1 {
    background-color: #f6e3ba;
}

.audience-2 {
    background-color: #ffffff;
}

.audience-3 {
    background-color: #f6e3ba;
}

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

.audience-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audience-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audience-title {
    font-family: "Georgia", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0;
}

.audience-description {
    font-family: "Calibri", sans-serif;
    font-size: 24px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0;
}

.audience-image-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.audience-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    max-height: 400px;
}

/* Plain Subhead Section */
.plain-subhead-section {
    background-color: #ffffff;
    padding: 0.25rem 2rem 1rem 2rem;
    text-align: center;
}

.plain-subhead-text {
    font-family: "Calibri", sans-serif;
    font-size: 28.8px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.plain-subhead-button {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.plain-subhead-button .cta-button {
    width: 421.875px;
    font-size: 1.1rem;
}

/* Program Benefits Section */
.program-benefits-section {
    background-color: #f6e3ba;
    padding: 4rem 2rem;
    text-align: left;
}

.program-benefits-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #506157;
    line-height: 1.3;
    margin: 0 0 3rem 0;
    text-align: center;
}

.program-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.program-benefits-list li {
    font-family: "Calibri", sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 1.5rem 0;
    padding: 0 0 1.5rem 0;
    border-bottom: 1px solid #D1BBA7;
    position: relative;
    text-align: center;
}

.program-benefits-list li b {
    font-size: 1.875rem;
    font-weight: 700;
    color: #504F4F;
}

.benefit-headline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.benefit-headline::before {
    content: "";
    background: url('images/asterix.png') no-repeat center center;
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
    display: inline-block;
    flex-shrink: 0;
}

.benefit-description {
    margin-top: 0.5rem;
}

.program-benefits-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Benefit items staggered reveal animation */
.benefit-item-hidden {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-item-visible {
    opacity: 1;
    transform: translateX(0);
}

.program-benefits-summary {
    font-family: "Georgia", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #504F4F;
    margin: 2rem auto;
    max-width: 900px;
    text-align: left;
}

.program-benefits-summary b {
    font-weight: 700;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

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

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

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

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
}

.testimonial-title {
    font-family: "Georgia", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.testimonial-quote {
    font-family: "Calibri", sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 1rem 0;
}

.testimonial-attribution {
    font-family: "Calibri", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #504F4F;
    margin: 1rem 0 0 0;
}

/* Host Bio Section */
.host-bio-section {
    background-color: #f6e3ba;
    padding: 4rem 2rem;
}

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


.host-photo-left {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    float: left;
    margin: 0 2rem 1rem 0;
}

.monthly-chart-right {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    float: right;
    margin: 0 0 1rem 2rem;
}

.host-bio-section h2 {
    font-family: "Georgia", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.host-bio-section p {
    font-family: "Calibri", sans-serif;
    font-size: 24px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 1rem 0;
}

.host-bio-section h3 {
    font-family: "Georgia", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 2rem 0 1rem 0;
}

.achievement-box {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.achievement-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.achievement-text {
    flex: 1;
}

.achievement-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.achievement-text li {
    font-family: "Calibri", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.achievement-text li:before {
    content: "•";
    color: #C87139;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.achievement-image {
    flex-shrink: 0;
}

.monthly-chart {
    width: 200px;
    height: auto;
    border-radius: 8px;
}

.host-photo-bottom-left {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    float: left;
    margin: 1rem 2rem 1rem 0;
}

.host-signature {
    margin: 2rem 0;
    text-align: center;
}

.host-signature img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.host-signature p {
    font-family: "Calibri", sans-serif;
    font-size: 1.1rem;
    color: #504F4F;
    margin: 0.5rem 0;
}

/* More Testimonials Section */
.more-testimonials-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

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

.more-testimonials-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 3rem 0;
    line-height: 1.3;
}

.more-testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.more-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.more-testimonial img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.more-testimonial-text {
    flex: 1;
}

.more-testimonial-text h3 {
    font-family: "Georgia", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.more-testimonial-text p {
    font-family: "Calibri", sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 1rem 0;
}

.more-testimonial-text p:last-child {
    font-weight: 600;
    font-size: 24px;
    margin: 1rem 0 0 0;
}

/* Course Introduction Section */
.course-intro-section {
    background-color: #f6e3ba;
    padding: 4rem 2rem;
}

.course-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.course-intro-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.course-intro-subheading {
    font-family: "Calibri", sans-serif;
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    color: #504F4F;
    margin: 0 0 2rem 0;
    line-height: 1.4;
}

.course-intro-image {
    margin: 0 0 3rem 0;
    display: flex;
    justify-content: center;
}

.course-intro-image img {
    max-width: 66%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.course-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.course-intro-text {
    font-family: "Calibri", sans-serif;
    font-size: 30px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 1.5rem 0;
}

.course-intro-text:last-of-type {
    margin-bottom: 2rem;
}

.course-intro-subtitle {
    font-family: "Georgia", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #C87139;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Course Modules Section */
.course-modules-section {
    background-color: #ffffff;
    padding: 4rem 2rem 0.5rem 2rem;
}

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

.module {
    margin-bottom: 2rem;
}

.module-tag {
    font-family: "Georgia", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #C87139;
    background-color: #f6e3ba;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    border-radius: 4px 0 0 4px;
}

.module-title {
    font-family: "Georgia", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #504F4F;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.module-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.module-description {
    width: 100%;
    max-width: 800px;
}

.module-description p {
    font-family: "Calibri", sans-serif;
    font-size: 24px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0;
}

.module-image-checklist {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.module-left .module-image-checklist {
    flex-direction: row;
}

.module-right .module-image-checklist {
    flex-direction: row;
}

.module-right .module-checklist {
    order: 1;
}

.module-right .module-image {
    order: 2;
}

.module-image {
    flex: 1;
    max-width: 400px;
    overflow: hidden;
}

.module-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.module-left .module-image img {
    margin-left: 0;
}

.module-right .module-image img {
    margin-right: 0;
}

.module-checklist {
    flex: 2;
    max-width: 800px;
    background-color: #ffffff;
    border: 2px solid #C87139;
    border-radius: 8px;
    padding: 1.5rem;
}

.checklist-header {
    font-family: "Georgia", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C87139;
    margin-bottom: 1rem;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-items li {
    font-family: "Calibri", sans-serif;
    font-size: 22px;
    line-height: 1.5;
    color: #504F4F;
    margin: 0 0 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.checklist-items li:before {
    content: "✓";
    color: #C87139;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.checklist-items li:last-child {
    margin-bottom: 0;
}

/* Course Testimonials Section */
.course-testimonials-section {
    background-color: #f6e3ba;
    padding: 4rem 2rem;
}

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

.course-testimonials-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 3rem 0;
    line-height: 1.3;
}

.course-testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.course-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.course-testimonial img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.course-testimonial-text {
    flex: 1;
}

.course-testimonial-text h3 {
    font-family: "Georgia", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.course-testimonial-text p {
    font-family: "Calibri", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 1rem 0;
}

.course-testimonial-text p:last-child {
    font-family: "Calibri", sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 1rem 0 0 0;
}

/* Course Tuition Section */
.course-tuition-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

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

.course-tuition-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.course-tuition-subtitle {
    font-family: "Calibri", sans-serif;
    font-size: 24px;
    line-height: 1.6;
    color: #504F4F;
    text-align: center;
    margin: 0 0 3rem 0;
}

/* Document-style tuition items */
.tuition-document {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tuition-document-item {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #d0d0d0;
}

.tuition-document-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tuition-document-item:nth-last-child(2) {
    border-bottom: none;
}

.tuition-icon {
    margin-bottom: 1rem;
}

.tuition-icon i {
    font-size: 2.5rem;
    color: #C87139;
    text-shadow: 0 2px 4px rgba(200, 113, 57, 0.2);
}

.tuition-document-title {
    font-family: "Georgia", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.tuition-document-description {
    font-family: "Calibri", sans-serif;
    font-size: 22px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 0.5rem 0;
}

.tuition-document-value {
    font-family: "Georgia", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #C87139;
    font-style: italic;
    margin: 0;
}

.tuition-total-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #C87139;
}

.tuition-total-title {
    font-family: "Georgia", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.tuition-total-description {
    font-family: "Calibri", sans-serif;
    font-size: 28px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0;
    font-style: italic;
}

/* Bonus Section */
.bonus-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #C87139 0%, #B85A2A 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(200, 113, 57, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bonus-container {
    position: relative;
    z-index: 1;
}

.bonus-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-content {
    text-align: center;
}

.bonus-description {
    font-family: "Calibri", sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bonus-description strong {
    color: #f6e3ba;
    font-weight: 700;
}

.bonus-value {
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 1rem;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.bonus-value-text {
    font-family: "Georgia", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Tuition Payment Section */
.tuition-payment-section {
    background-color: #f6e3ba;
    padding: 4rem 2rem;
}

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

.tuition-payment-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 3rem 0;
    line-height: 1.3;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-intro-text {
    font-family: "Calibri", sans-serif;
    font-size: 30px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 1rem 0;
}

.pricing-intro-text:last-child {
    margin-bottom: 0;
}

.regular-price {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    flex: 1;
}

.price-label {
    font-family: "Georgia", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #504F4F;
    margin: 0 0 0.5rem 0;
}

.price-amount {
    font-family: "Georgia", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    text-decoration: line-through;
}

.special-offer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #C87139 0%, #B85A2A 100%);
    border-radius: 12px;
    color: #ffffff;
    flex: 2;
    box-shadow: 0 8px 24px rgba(200, 113, 57, 0.3);
}

.offer-badge {
    font-family: "Georgia", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

.offer-title {
    font-family: "Georgia", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.offer-description {
    font-family: "Calibri", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.payment-options {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-option {
    flex: 1;
    border: 2px solid #C87139;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.payment-option.featured {
    background-color: #ffffff;
    border: 2px solid #C87139;
    box-shadow: 0 8px 24px rgba(200, 113, 57, 0.2);
    transform: scale(1.02);
}

.payment-option:hover {
    box-shadow: 0 8px 24px rgba(200, 113, 57, 0.2);
    transform: translateY(-2px);
}

.payment-header {
    margin-bottom: 1rem;
}

.payment-title {
    font-family: "Georgia", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
}

.payment-price {
    font-family: "Georgia", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #C87139;
    margin: 0 0 0.5rem 0;
}

.savings {
    font-family: "Georgia", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #28a745;
    background-color: #d4edda;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.total-price {
    font-family: "Georgia", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #504F4F;
    font-style: italic;
}

.payment-features {
    margin-top: 1rem;
}

.feature-text {
    font-family: "Calibri", sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #504F4F;
    margin: 0;
}

.included-items {
    background-color: #f8f9fa;
    border: 2px solid #C87139;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.included-items h4 {
    font-family: "Georgia", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
}

.included-list li {
    font-family: "Calibri", sans-serif;
    font-size: 22px;
    color: #504F4F;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li strong {
    color: #C87139;
    font-weight: 700;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

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

.guarantee-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guarantee-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.guarantee-image {
    margin-bottom: 2rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
}

.guarantee-badge-image {
    max-width: 200px;
    height: auto;
    background-color: #ffffff;
    border-radius: 8px;
    display: block;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-text {
    font-family: "Calibri", sans-serif;
    font-size: 30px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 2rem 0;
    font-style: italic;
}

.guarantee-promise {
    font-family: "Calibri", sans-serif;
    font-size: 30px;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 3rem 0;
    font-weight: 400;
}

.guarantee-promise strong {
    color: #C87139;
    font-weight: 700;
}


.urgency-text {
    font-family: "Calibri", sans-serif;
    font-size: 24px;
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 1rem 0;
}

.urgency-text:last-child {
    margin-bottom: 0;
}

.urgency-text strong {
    color: #dc3545;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background-color: #f6e3ba;
    padding: 4rem 2rem;
}

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

.faq-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #506157;
    text-align: center;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.faq-subheading {
    font-family: "Calibri", sans-serif;
    font-size: 1.5rem; /* 24px */
    font-weight: 400;
    color: #504F4F;
    text-align: center;
    margin: 0 0 3rem 0;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-item.active {
    border: 1px solid #C87139;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background-color: #ffffff;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: "Calibri", sans-serif;
}

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

.faq-question-text {
    font-size: 1.875rem; /* 30px */
    font-weight: 600;
    color: #000000;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #C87139;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 2rem 1.5rem 2rem;
    border-top: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.faq-item.active .faq-answer {
    display: block !important;
}

.faq-answer p {
    font-family: "Calibri", sans-serif;
    font-size: 1.5rem; /* 24px */
    line-height: 1.6;
    color: #504F4F;
    margin: 0 0 1rem 0;
}

.faq-answer p:first-child {
    margin-top: 1.5rem; /* Add space at the top of each answer */
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #506157;
    padding: 4rem 2rem;
    text-align: center;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.final-cta-title {
    font-family: "Georgia", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.final-cta-description {
    font-family: "Calibri", sans-serif;
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.final-cta-button {
    background-color: #ffffff;
    color: #506157;
    align-self: center;
    margin-top: 1rem;
}

.final-cta-button:hover {
    background-color: #f0f0f0;
    color: #506157;
}

/* Footer */
.course-footer {
    background-color: #ffffff;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    font-family: "Calibri", sans-serif;
    color: #504F4F;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Animation Classes */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-down.visible {
    opacity: 1;
    transform: translateY(0);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.bounce-in {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for sequential animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* Special effect animations */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #C87139, #ff6b35, #C87139);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 1;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.shimmer-effect:hover::after {
    left: 100%;
}

/* Counter animation for numbers */
.counter-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.counter-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonial card animations */
.testimonial-card {
    opacity: 0;
    transform: translateX(-30px) rotateY(-15deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

/* Module card animations */
.module-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.module-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Payment option animations */
.payment-option {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.payment-option.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.payment-option.featured {
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { 
        box-shadow: 0 8px 24px rgba(200, 113, 57, 0.2);
        transform: scale(1.02);
    }
    50% { 
        box-shadow: 0 12px 32px rgba(200, 113, 57, 0.4);
        transform: scale(1.05);
    }
}

/* FAQ item animations */
.faq-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Guarantee badge animation */
.guarantee-badge {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.guarantee-badge.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* CTA button special effects */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #C87139, #ff6b35);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Enhanced CTA Button Effects */
.cta-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Enhanced visual effects */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(80, 97, 87, 0.02) 0%, rgba(255, 250, 237, 0.05) 100%);
    pointer-events: none;
}

.audience-section {
    position: relative;
    overflow: hidden;
}

.audience-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(80, 97, 87, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.audience-container {
    position: relative;
    z-index: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .hero-container,
    .audience-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .audience-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .course-header {
        padding: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-left {
        align-items: center;
    }
    
    .header-text {
        font-size: 0.8rem;
    }
    
    .header-cta {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        align-self: center;
    }
    
    .hero-follow-up-section {
        padding: 0 0.5rem;
    }
    
    .hero-follow-up {
        font-size: 1.4rem;
        padding: 0 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .plain-subhead-section {
        padding: 1.5rem 1rem;
    }
    
    .plain-subhead-text {
        font-size: 1.6rem;
        padding: 0 1rem;
    }
    
    .program-benefits-section {
        padding: 3rem 1rem;
    }
    
    .program-benefits-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .program-benefits-list li {
        font-size: 1.3rem;
        padding-left: 3rem;
    }
    
    .program-benefits-summary {
        font-size: 25.6px;
        margin: 1.5rem 0 0 0;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
    }
    
    .testimonial-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .testimonial-image img {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-title {
        font-size: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
    
    .audience-section {
        padding: 3rem 1rem;
    }
    
    .audience-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .audience-title {
        font-size: 1.4rem;
    }
    
    .audience-description {
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .faq-subheading {
        font-size: 1.25rem; /* 20px on mobile */
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1.5rem; /* 24px on mobile */
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 1.25rem; /* 20px on mobile */
    }
    
    .final-cta-section {
        padding: 3rem 1rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-description {
        font-size: 1.1rem;
    }
    
    /* Hide module images on mobile for better readability */
    .module-image {
        display: none;
    }
    
    .module-image-checklist {
        flex-direction: column;
    }
    
    .module-checklist {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.1;
    }
    
    .hero-follow-up-section {
        padding: 0 0.25rem;
    }
    
    .hero-follow-up {
        font-size: 1.2rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .plain-subhead-section {
        padding: 1rem 0.5rem;
    }
    
    .plain-subhead-text {
        font-size: 1.3rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .program-benefits-section {
        padding: 2rem 0.5rem;
    }
    
    .program-benefits-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .program-benefits-list li {
        font-size: 1.2rem;
        padding-left: 2.5rem;
        line-height: 1.5;
    }
    
    .program-benefits-summary {
        font-size: 25.6px;
        margin: 1rem 0 0 0;
    }
    
    .testimonial-section {
        padding: 3rem 1rem;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .testimonial-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .testimonial-image img {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-title {
        font-size: 1.3rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .testimonial-attribution {
        font-size: 24px;
    }
    
    .host-bio-section {
        padding: 2rem 1rem;
    }
    
    .host-photo-left {
        width: 240px;
        height: 300px;
    }
    
    .monthly-chart-right {
        width: 240px;
        height: 300px;
    }
    
    .more-testimonials-section {
        padding: 3rem 1rem;
    }
    
    .more-testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .more-testimonial {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .more-testimonial img {
        width: 100px;
        height: 100px;
    }
    
    .more-testimonial-text h3 {
        font-size: 1.5rem;
    }
    
    .more-testimonial-text p {
        font-size: 1.1rem;
    }
    
    .more-testimonial-text p:last-child {
        font-size: 24px;
    }
    
    .more-testimonials-section {
        padding: 2rem 1rem;
    }
    
    .more-testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .more-testimonial {
        gap: 1rem;
    }
    
    .more-testimonial img {
        width: 80px;
        height: 80px;
    }
    
    .more-testimonial-text h3 {
        font-size: 1.3rem;
    }
    
    .more-testimonial-text p {
        font-size: 1rem;
    }
    
    .more-testimonial-text p:last-child {
        font-size: 24px;
    }
    
    .tuition-document {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem 1rem;
    }
    
    .tuition-document-item {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .tuition-icon i {
        font-size: 2rem;
    }
    
    .tuition-document-title {
        font-size: 1.4rem;
    }
    
    .tuition-document-description {
        font-size: 22px;
    }
    
    .tuition-document-value {
        font-size: 22px;
    }
    
    .tuition-total-title {
        font-size: 1.6rem;
    }
    
    .tuition-total-description {
        font-size: 28px;
    }
    
    .course-modules-section {
        padding: 3rem 1rem;
    }
    
    .module {
        margin-bottom: 0.5rem;
    }
    
    .module-title {
        font-size: 2rem;
    }
    
    .module-content {
        gap: 1.5rem;
    }
    
    .module-image-checklist {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .module-left .module-image-checklist,
    .module-right .module-image-checklist {
        flex-direction: column;
    }
    
    .module-description,
    .module-image,
    .module-checklist {
        max-width: 100%;
    }
    
    .module-image img {
        height: 250px;
    }
    
    .host-bio-section h2 {
        font-size: 1.5rem;
    }
    
    .host-bio-section p {
        font-size: 24px;
    }
    
    .host-bio-section h3 {
        font-size: 1.3rem;
    }
    
    .monthly-chart {
        width: 120px;
    }
    
    .host-photo-bottom-left {
        width: 200px;
        height: 120px;
    }
    
    .host-bio-section {
        padding: 3rem 1rem;
    }
    
    
    .host-photo-left {
        width: 300px;
        height: 360px;
        float: none;
        margin: 0 auto 1.5rem auto;
        display: block;
    }
    
    .monthly-chart-right {
        width: 300px;
        height: 360px;
        float: none;
        margin: 0 auto 1.5rem auto;
        display: block;
    }
    
    .host-bio-section h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .host-bio-section p {
        font-size: 24px;
    }
    
    .achievement-content {
        flex-direction: column;
        text-align: center;
    }
    
    .monthly-chart {
        width: 150px;
    }
    
    .host-photo-bottom-left {
        width: 250px;
        height: 150px;
        float: none;
        margin: 1rem auto;
        display: block;
    }
    
    .audience-title {
        font-size: 1.2rem;
    }
    
    .faq-section {
        padding: 2rem 1rem;
    }
    
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .faq-subheading {
        font-size: 1.125rem; /* 18px on small mobile */
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question-text {
        font-size: 1.25rem; /* 20px on small mobile */
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-answer p {
        font-size: 1.125rem; /* 18px on small mobile */
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .guarantee-title {
        font-size: 2rem;
    }
    
    .guarantee-badge-image {
        max-width: 150px;
    }
    
    .guarantee-text {
        font-size: 24px;
    }
    
    .guarantee-promise {
        font-size: 1.2rem;
    }
    
    
    .urgency-text {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .tuition-document {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem 2rem 0.5rem;
    }
    
    .tuition-document-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .tuition-icon i {
        font-size: 1.8rem;
    }
    
    .tuition-document-title {
        font-size: 1.2rem;
    }
    
    .tuition-document-description {
        font-size: 22px;
    }
    
    .tuition-document-value {
        font-size: 22px;
    }
    
    .tuition-total-title {
        font-size: 1.4rem;
    }
    
    .tuition-total-description {
        font-size: 28px;
    }
}

/* Mobile styles for course testimonials */
@media (max-width: 768px) {
    .course-testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .course-testimonial img {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .course-testimonial-text {
        width: 100%;
    }
    
    .more-testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .more-testimonial img {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .more-testimonial-text {
        width: 100%;
    }
}
