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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #666;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #2b2b2b;
    font-weight: 600;
}

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

/* Header & Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 40px;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2b2b;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2b2b2b;
}

.cart-icon {
    font-size: 18px;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 500px;
    position: relative;
    background: #d0d0d0;
    overflow: hidden;
}

.hero-image-section {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.hero-right-content {
    text-align: center;
    max-width: 500px;
}

.hero-right-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-right-dots {
    font-size: 2.5rem;
    color: #666;
    margin: 20px 0;
}

.hero-right-cohort {
    font-size: 20px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-right-signup {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.hero-right-signup strong {
    color: #2b2b2b;
    font-weight: 700;
    font-size: 19px;
}

.btn-hero-right {
    display: inline-block;
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-top: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero-right:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 167, 83, 0.4);
}

.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 1;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.15);
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    width: 50%;
}

.hero-content {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    margin-bottom: 0;
    width: 100%;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.1;
    color: #2b2b2b;
    letter-spacing: -1px;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 167, 83, 0.4);
}

.hero h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2b2b2b;
    font-weight: 600;
}

.hero .cta-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.hero h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    margin-top: 30px;
    color: #2b2b2b;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: #fff;
    /* padding: 20px 0 0 0; */
    text-align: center;
}

.cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #2b2b2b;
}

.cta-message {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.cta-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
}

.cta-card {
    background: #f8f8f8;
    padding: 30px 35px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s;
}

.cta-card:last-child {
    border-right: none;
}

.cta-card:hover {
    background: #fff;
}

.cta-card h3 {
    font-size: 1.1rem;
    color: #2b2b2b;
    margin-bottom: 18px;
    line-height: 1.3;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-filled {
    display: inline-block;
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 167, 83, 0.4);
}

.btn-cta-outline {
    display: inline-block;
    background: transparent;
    color: #f5a753;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 50px;
    border: 2px solid #f5a753;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-left: -60px;
    margin-right: -60px;
}

.hero-card {
    background-color: #4a5d6a;
    color: #fff;
    padding: 40px 35px;
    text-align: center;
}

.hero-card:first-child {
    background-color: #4a5d6a;
}

.hero-card:last-child {
    background-color: #5a6d7a;
}

.hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.hero-card p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.btn-card {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    border-radius: 20px;
    transition: background-color 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-card:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/* Hero CTA Cards */
.hero-cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 40px;
}

.cta-card {
    background: #fff;
    /* border-radius: 20px; */
    padding: 50px 40px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.cta-card h3 {
    font-size: 1.5rem;
    color: #2b2b2b;
    margin-bottom: 35px;
    line-height: 1.4;
    font-weight: 600;
}

.btn-cta-filled {
    display: inline-block;
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 167, 83, 0.4);
}

.btn-cta-outline {
    display: inline-block;
    background: transparent;
    color: #f5a753;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: 2px solid #f5a753;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Info Section */
.info-section {
    background: linear-gradient(to bottom, #fafafa, #e5e5e5);
    /* Increase vertical padding to match surrounding sections visually */
    padding: 160px 0;
    position: relative;
    /* reduce the overlap slightly so the diagonal sits more naturally */
    margin-top: 40px;
    z-index: 3;
    clip-path: polygon(0 20%, 100% 0, 100% 79%, 0 100%);
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    /* add a bit more horizontal breathing room */
    padding: 0 60px;
}

.info-item h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2b2b2b;
    font-weight: 600;
}

.info-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #ffc866 0%, #ffb347 50%, #ffa726 100%);
    padding: 80px 0;
    position: relative;
    margin-top: -100px;
    /* clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); */
    clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item:last-child {
    border-right: none;
}

.service-icon {
    color: #3a4a57;
    margin-bottom: 25px;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.service-item p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.btn-learn {
    display: inline-block;
    background-color: #fff;
    color: #3a4a57;
    padding: 10px 28px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-learn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #2b2b2b;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        padding: 60px 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-origin-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-column,
    .books-column,
    .origin-column {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .service-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .service-item:last-child,
    .service-item:nth-last-child(2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav {
        padding: 1rem 20px;
        position: relative;
        z-index: 1000;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        font-size: 16px;
    }
    
    /* Hero responsive fixes */
    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
        position: relative;
        margin-top: 70px;
    }
    
    .diagonal-bg {
        display: none;
    }
    
    .hero-image-section {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        display: block;
        padding: 40px 20px;
        background: #d0d0d0;
        order: 2;
    }
    
    .hero-content-wrapper {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        min-height: auto;
        padding: 50px 30px;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        order: 1;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero h3 {
        font-size: 1.3rem;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cta-card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 40px 30px;
    }
    
    .cta-card:last-child {
        border-bottom: 1px solid #e0e0e0;
    }
    
    /* About section responsive */
    .about-origin-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .about-column,
    .books-column,
    .origin-column {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    .column-content {
        padding: 40px 25px;
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .theme-panel-header {
        margin-bottom: 25px;
    }
    
    .theme-question-large {
        font-size: 1.4rem;
    }
    
    .reflection-item {
        font-size: 14px;
        padding: 15px 0 15px 20px;
    }
    
    .who-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .join-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 45px 40px !important;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        text-align: left;
    }
    
    .pricing-boxes {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 60px 30px;
    }
    
    .service-item:last-child {
        border-bottom: none;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .text-content p img {
        float: none !important;
        margin: 0 auto 20px auto !important;
        display: block;
        max-width: 180px !important;
    }
}

    .cta-card:last-child {
        border-bottom: none;
    }

    .cta-card h3 {
        font-size: 1.2rem;
        min-height: auto;
        margin-bottom: 25px;
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
        gap: 10px;
        border-bottom: none;
        padding-bottom: 20px;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 12px;
        border-bottom: none;
        background: #f5f5f5;
        border-radius: 25px;
    }
    
    .tab-btn.active {
        background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
        color: #fff;
    }
    
    .theme-question-large {
        font-size: 1.4rem;
    }
    
    .reflection-item {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 60px 30px;
    }
    
    .service-item:last-child {
        border-bottom: none;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem 15px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .hero-content-wrapper {
        padding: 30px 20px;
        width: 100%;
        position: relative;
        left: 0;
        top: 0;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-image-section {
        padding: 30px 20px;
        width: 100%;
        position: relative;
        left: 0;
        top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero h3 {
        font-size: 1.1rem;
    }
    
    .hero-right-cohort {
        font-size: 16px;
    }
    
    .hero-right-signup {
        font-size: 15px;
    }
    
    .hero-right-signup strong {
        font-size: 16px;
    }
    
    .cta-message {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .cta-card {
        padding: 25px 20px;
    }
    
    .cta-card h3 {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .btn-cta-filled,
    .btn-cta-outline {
        padding: 11px 20px;
        font-size: 12px;
    }
    
    .column-content {
        padding: 30px 20px;
    }
    
    .column-content h2 {
        font-size: 1.4rem;
    }
    
    .text-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-intro {
        font-size: 13px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .work-card {
        padding: 25px 20px;
    }
    
    .work-number {
        font-size: 1.3rem;
    }
    
    .work-card h3 {
        font-size: 1rem;
    }
    
    .tabs-navigation {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 1px;
        border-radius: 8px;
    }
    
    .theme-month-label {
        font-size: 11px;
    }
    
    .theme-question-large {
        font-size: 1.1rem;
    }
    
    .reflection-item {
        font-size: 12px;
        padding: 12px 0 12px 15px;
        border-left-width: 3px;
    }
    
    .reflection-item:hover {
        padding-left: 18px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .experience-item {
        font-size: 13px;
    }
    
    .who-main h2,
    .who-sidebar h3 {
        font-size: 1.3rem;
    }
    
    .who-intro {
        font-size: 13px;
    }
    
    .who-item {
        font-size: 13px;
    }
    
    .who-card,
    .gift-card {
        padding: 25px 20px;
    }
    
    .join-step {
        padding: 0;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 40px 35px !important;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .price-box {
        padding: 25px 20px;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .cohort-2-info {
        padding: 30px 20px;
    }
    
    .service-item {
        padding: 40px 20px;
    }
    
    .info-container {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .how-it-works-section,
    .themes-section,
    .experience-section,
    .who-section,
    .join-section,
    .final-cta-section {
        padding: 40px 0;
    }
    
    .about-origin-section {}
        padding: 40px 0;
    }
    
    .book-purchase-buttons {
        gap: 12px;
    }
    
    .btn-book-purchase,
    .btn-book-combo {
        padding: 12px 20px;
        font-size: 13px;
    }
}


/* Fixed Side Button */
.fixed-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background-color: #c9a961;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 1000;
    transition: background-color 0.3s;
}

.fixed-button:hover {
    background-color: #b89550;
}

/* Header & Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2b2b2b;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f5a753;
}

.nav-menu .cta-nav {
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu .cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 167, 83, 0.4);
    color: #fff !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2b2b2b;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.9) 0%, rgba(184, 149, 80, 0.9) 100%),
                url('life-coach-coaching-page-533x1598.jpg') center/cover;
    z-index: -1;
}

.hero-content {
    color: white;
    z-index: 1;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.2;
}

/* Divider Section */
.divider-section {
    background-color: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
}

.divider-section.dark {
    background-color: #2b2b2b;
}

.divider-section.dark .divider-text {
    color: #fff;
}

.divider-text {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2b2b2b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Featured Services Section */
.featured-services {
    padding: 0;
    background-color: #fff;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-card {
    padding: 80px 60px;
    text-align: center;
}

.featured-primary {
    background-color: #c9a961;
    color: #fff;
}

.featured-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: inherit;
}

.featured-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: inherit;
    opacity: 0.95;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #2b2b2b;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #c9a961;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid #c9a961;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #c9a961;
    color: #fff;
}

.btn-large {
    padding: 18px 50px;
    font-size: 16px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #f7f7f7;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: #c9a961;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2b2b2b;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}


.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2b2b2b;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #666;
}

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

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2b2b2b;
}

.process-text > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.9;
    color: #666;
}

.process-steps {
    list-style: none;
}

.process-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.step-number {
    background-color: #c9a961;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    color: #666;
    line-height: 1.8;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Packages Section */
.packages-section {
    padding: 80px 20px;
    background-color: #f7f7f7;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2b2b2b;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.package-card {
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.package-featured {
    border: 3px solid #c9a961;
    position: relative;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2b2b2b;
}

.package-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.package-details {
    color: #c9a961;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2b2b2b;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f7f7f7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    text-align: center;
    border: 1px solid #e0e0e0;
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: #c9a961;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.9;
    color: #666;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #c9a961;
}

.author-name {
    font-weight: 600;
    color: #2b2b2b;
}

/* About & Origin Section */
.about-origin-section {}
    padding: 100px 0;
    background: #fff;
}

.about-origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.about-column,
.origin-column,
.books-column {
    position: relative;
}

.about-column {
    grid-column: 1;
    grid-row: 1;
}

.books-column {
    grid-column: 1;
    grid-row: 2;
}

.origin-column {
    grid-column: 2;
    grid-row: 1 / 3;
}

.column-content {
    background: #fff;
    padding: 55px 50px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
}

.about-column .column-content {
    border-left: 4px solid #f5a753;
}

.origin-column .column-content {
    background: #fafafa;
    border-top: 4px solid #f5a753;
}

.column-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 28px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.column-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #f5a753, #e69642);
    border-radius: 2px;
}

.text-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
}

.text-content p img {
    max-width: 100%;
    height: auto;
}

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

.text-content em {
    color: #2b2b2b;
    font-weight: 500;
}

/* Book Purchase CTA */
.book-purchase-cta {
    text-align: center;
}

.book-purchase-cta h3 {
    font-size: 1.8rem;
    color: #2b2b2b;
    margin-bottom: 15px;
    font-weight: 600;
}

.book-purchase-intro {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.book-purchase-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.btn-book-purchase {
    display: inline-block;
    background: #fff;
    color: #2b2b2b;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #f5a753;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-book-purchase:hover {
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 167, 83, 0.3);
}

.btn-book-combo {
    display: inline-block;
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-book-combo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 167, 83, 0.4);
}

@media (max-width: 768px) {
    .book-purchase-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .book-purchase-buttons {
        flex-direction: column;
    }
    
    .btn-book-purchase,
    .btn-book-combo {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .text-content p img {
        float: none !important;
        margin: 0 auto 20px auto !important;
        display: block;
        max-width: 180px !important;
    }
}

@media (max-width: 968px) {
    .about-origin-section {}
        padding: 80px 30px;
    }
    .about-origin-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .column-content {
        padding: 35px 25px;
    }
    .column-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .about-origin-section {}
        padding: 60px 25px;
    }
    .column-content {
        padding: 30px 20px;
    }
    .column-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .text-content p {
        margin-bottom: 16px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .about-card {
        padding: 45px 35px;
    }
    .about-card::before {
        height: 60px;
    }
    .testimonial-item {
        padding: 28px 32px;
    }
    .testimonial-item::before {
        font-size: 36px;
        top: 15px;
        left: 15px;
    }
    .about-card h2, .testimonials-right h2 {
        font-size: 1.6rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.3s;
    background-color: #f7f7f7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a961;
    background-color: #fff;
}

/* Footer */
.footer {
    background-color: #2b2b2b;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-links a {
    color: #fff;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #c9a961;
}

.footer-text {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .divider-text {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-card {
        padding: 60px 40px;
    }
    
    .fixed-button {
        font-size: 12px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .divider-text {
        font-size: 1.5rem;
    }
    
    .featured-card {
        padding: 40px 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.work-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #f5a753;
}

.work-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a753;
    margin-bottom: 20px;
}

.work-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 12px;
}

.work-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.highlight-card {
    background: linear-gradient(135deg, #fff5e6 0%, #fff9f0 100%);
    border-color: #f5a753;
}

/* Themes Section */
.themes-section {
    padding: 100px 0;
    background: #fff;
}

.themes-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #e8e8e8;
    border: none;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.tab-btn:hover {
    background: #ddd;
    color: #2b2b2b;
}

.tab-btn.active {
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
}

.tabs-content {
    position: relative;
}

.theme-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.theme-panel.active {
    display: block;
}

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

.theme-panel-header {
    margin-bottom: 35px;
}

.theme-month-label {
    font-size: 13px;
    font-weight: 600;
    color: #2b2b2b;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.theme-question-large {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f5a753;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.theme-reflections-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reflection-item {
    font-size: 15px;
    color: #555;
    padding: 18px 0 18px 25px;
    border-left: 4px solid #f5a753;
    background: #fafafa;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.reflection-item strong {
    color: #f5a753;
    font-weight: 600;
}

.reflection-item:hover {
    background: #fff5e6;
    border-left-color: #e69642;
    padding-left: 30px;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: #fafafa;
}

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

.experience-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.experience-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    text-align: left;
}

.experience-item {
    font-size: 14px;
    color: #555;
    padding: 12px 0;
}

/* Who Section */
.who-section {
    padding: 100px 0;
    background: #fff;
}

.who-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.who-main h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.who-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.who-main h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2b2b2b;
    margin: 40px 0 24px 0;
}

.who-list {
    display: grid;
    gap: 12px;
}

.who-item {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
}

.who-outcome {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #f5a753;
}

.who-outcome p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.8;
}

.who-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.who-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.who-card ul {
    list-style: none;
    padding: 0;
}

.who-card li {
    font-size: 14px;
    color: #555;
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.7;
}

.who-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f5a753;
    font-weight: 600;
}

.gift-card {
    background: linear-gradient(135deg, #fff5e6 0%, #fff9f0 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #f5a753;
}

.gift-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.gift-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Join Section */
.join-section {
    padding: 100px 0;
    background: #fff;
}

.cohort-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.join-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.join-intro p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.join-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.join-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f5a753;
    font-weight: 700;
}

.pricing-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.price-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e8e8e8;
}

.price-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a753;
    margin-bottom: 12px;
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 4px;
}

.price-example {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.contact-info {
    background: #fff5e6;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #f5a753;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: #f5a753;
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.note {
    font-size: 13px !important;
    font-style: italic;
    color: #888 !important;
}

.step-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-top: 12px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 167, 83, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #f5a753;
    border: 2px solid #f5a753;
}

.btn-secondary:hover {
    background: #f5a753;
    color: #fff;
}

.cohort-2-info {
    max-width: 800px;
    margin: 60px auto 0 auto;
    text-align: center;
    padding: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.cohort-2-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 16px;
}

.cohort-2-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: #fafafa;
    color: #2b2b2b;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2b2b2b;
}

.cta-message {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 50px;
    color: #555;
}

.final-cta-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2b2b2b;
}

.cta-options {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.cta-option {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cta-option h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #f5a753 0%, #e69642 100%);
    color: #fff;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 167, 83, 0.5);
}

.btn-cta-secondary {
    background: transparent;
    color: #f5a753;
    border: 2px solid #f5a753;
}

.btn-cta-secondary:hover {
    background: #f5a753;
    color: #fff;
}

.final-contact {
    margin: 40px 0;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.final-contact p {
    font-size: 15px;
    color: #666;
}

.final-contact a {
    color: #f5a753;
    text-decoration: none;
    font-weight: 600;
}

.final-contact a:hover {
    text-decoration: underline;
}

.signature {
    margin-top: 50px;
}

.signature p {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.signature-name {
    font-size: 20px;
    font-weight: 600;
    color: #2b2b2b !important;
}

/* Responsive adjustments for new sections */
@media (max-width: 968px) {
    .who-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .join-step {
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }
    
    .step-content {
        padding: 45px 40px !important;
    }
    
    .pricing-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .price-box {
        padding: 25px 20px;
        text-align: center;
    }
    
    .contact-info {
        padding: 20px;
        text-align: left;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .final-cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .step-content {
        padding: 35px 30px !important;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
    
    .step-content p {
        font-size: 13px;
        text-align: left;
    }
    
    .price-box {
        padding: 20px 15px;
    }
    
    .price-box h4 {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .contact-info {
        padding: 18px 15px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .step-content {
        padding: 35px 30px !important;
    }
    
    .how-it-works-section,
    .themes-section,
    .experience-section,
    .who-section,
    .join-section,
    .final-cta-section {
        padding: 50px 20px;
    }
    
    .about-origin-section {}

/* Radio Group Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.radio-option:hover {
    border-color: #d4a574;
    background-color: #fafaf8;
}

.radio-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-content {
    color: #000;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #d4a574;
    background-color: #fef9f3;
    border-width: 2px;
}

.radio-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.radio-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.radio-description {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}
