/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom variables for unique styling */
:root {
    --sunset-orange: #f77f00;
    --cream-whisper: #fef4e6;
    --burnt-sienna: #d45500;
    --forest-mist: #2d5a27;
    --ocean-depths: #1a4b5c;
    --golden-sand: #e6b800;
    --lavender-haze: #b19cd9;
    --stone-gray: #6c6c6c;
    --paper-white: #fafafa;
    --charcoal-night: #2c2c2c;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: var(--burnt-sienna);
    background-color: var(--paper-white);
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 21px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 23px;
}

/* Header styles */
.main_menu {
    background: var(--paper-white);
    box-shadow: 0 3px 13px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--cream-whisper);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 0;
    position: relative;
}

.navbar-brand .logo_img {
    height: 47px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 32px;
    height: 3px;
    background: var(--burnt-sienna);
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--burnt-sienna);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 23px;
}

.navbar-nav {
    display: flex;
    gap: 34px;
    list-style: none;
    align-items: center;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--burnt-sienna);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--sunset-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sunset-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--paper-white);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding-top: 87px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 19px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 23px;
        font-size: 19px;
        color: var(--burnt-sienna);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero section */
.hero_banner {
    background: linear-gradient(135deg, var(--cream-whisper) 0%, var(--paper-white) 100%);
    padding: 134px 0 89px;
    margin-top: 87px;
    border-bottom: 3px solid var(--sunset-orange);
}

.hero_content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 67px;
    align-items: center;
}

.hero_title {
    font-size: 3.4rem;
    color: var(--burnt-sienna);
    margin-bottom: 29px;
    line-height: 1.2;
}

.hero_description {
    font-size: 1.1rem;
    color: var(--stone-gray);
    margin-bottom: 43px;
    line-height: 1.8;
}

.hero_buttons {
    display: flex;
    gap: 23px;
    flex-wrap: wrap;
}

.primary_button {
    background: var(--sunset-orange);
    color: white;
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 19px rgba(247, 127, 0, 0.3);
}

.primary_button:hover {
    background: var(--burnt-sienna);
    transform: translateY(-2px);
    box-shadow: 0 8px 23px rgba(247, 127, 0, 0.4);
}

.secondary_button {
    background: transparent;
    color: var(--burnt-sienna);
    padding: 17px 34px;
    text-decoration: none;
    border: 2px solid var(--burnt-sienna);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary_button:hover {
    background: var(--burnt-sienna);
    color: white;
    transform: translateY(-2px);
}

.hero_image_wrapper {
    position: relative;
}

.hero_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0,0,0,0.12);
}

/* Assessment section */
.assessment_zone {
    padding: 97px 0;
    background: var(--paper-white);
}

.section_header {
    text-align: center;
    margin-bottom: 67px;
}

.section_title {
    font-size: 2.8rem;
    color: var(--burnt-sienna);
    margin-bottom: 23px;
}

.section_subtitle {
    font-size: 1.1rem;
    color: var(--stone-gray);
    max-width: 640px;
    margin: 0 auto;
}

.assessment_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 34px;
}

.assessment_card {
    background: white;
    border: 3px solid var(--cream-whisper);
    border-radius: 13px;
    padding: 43px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.assessment_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 127, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.assessment_card:hover::before {
    left: 100%;
}

.assessment_card:hover {
    border-color: var(--sunset-orange);
    transform: translateY(-5px);
    box-shadow: 0 13px 34px rgba(247, 127, 0, 0.15);
}

.card_title {
    font-size: 1.5rem;
    color: var(--burnt-sienna);
    margin-bottom: 19px;
}

.card_description {
    color: var(--stone-gray);
    margin-bottom: 29px;
    line-height: 1.7;
}

.card_link {
    color: var(--sunset-orange);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.card_link::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.card_link:hover::after {
    transform: translateX(5px);
}

/* Resilience building section */
.resilience_building {
    padding: 89px 0;
    background: linear-gradient(45deg, var(--cream-whisper) 0%, var(--paper-white) 100%);
}

.building_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 57px;
    align-items: center;
}

.building_title {
    font-size: 2.6rem;
    color: var(--burnt-sienna);
    margin-bottom: 29px;
}

.building_description {
    color: var(--stone-gray);
    margin-bottom: 43px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.building_features {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.feature_item {
    border-left: 4px solid var(--sunset-orange);
    padding-left: 23px;
}

.feature_title {
    font-size: 1.3rem;
    color: var(--burnt-sienna);
    margin-bottom: 11px;
}

.feature_text {
    color: var(--stone-gray);
    line-height: 1.7;
}

.section_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 11px 29px rgba(0,0,0,0.1);
}

/* Pressure management section */
.pressure_management {
    padding: 97px 0;
    background: var(--paper-white);
}

.pressure_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 61px;
    align-items: center;
}

.pressure_img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 11px 29px rgba(0,0,0,0.1);
}

.pressure_title {
    font-size: 2.6rem;
    color: var(--burnt-sienna);
    margin-bottom: 29px;
}

.pressure_desc {
    color: var(--stone-gray);
    margin-bottom: 34px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.pressure_list {
    list-style: none;
    margin-bottom: 43px;
}

.pressure_item {
    position: relative;
    padding-left: 29px;
    margin-bottom: 17px;
    color: var(--stone-gray);
    line-height: 1.7;
}

.pressure_item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sunset-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.pressure_cta {
    background: var(--burnt-sienna);
    color: white;
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pressure_cta:hover {
    background: var(--sunset-orange);
    transform: translateY(-2px);
}

/* CTA section */
.cta_section {
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, var(--sunset-orange) 100%);
    color: white;
    padding: 97px 0;
    text-align: center;
}

.cta_title {
    font-size: 3rem;
    margin-bottom: 29px;
    color: white;
}

.cta_text {
    font-size: 1.2rem;
    margin-bottom: 57px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta_stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 43px;
    margin-bottom: 57px;
}

.stat_item {
    text-align: center;
}

.stat_number {
    display: block;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 11px;
    color: white;
}

.stat_label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta_button {
    background: white;
    color: var(--burnt-sienna);
    padding: 21px 47px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 29px rgba(0,0,0,0.2);
}

/* Programs section */
.programs_showcase {
    padding: 97px 0;
    background: var(--cream-whisper);
}

.programs_header {
    text-align: center;
    margin-bottom: 67px;
}

.programs_title {
    font-size: 2.8rem;
    color: var(--burnt-sienna);
    margin-bottom: 23px;
}

.programs_subtitle {
    font-size: 1.1rem;
    color: var(--stone-gray);
    max-width: 640px;
    margin: 0 auto;
}

.programs_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
}

.program_card {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.program_card:hover {
    transform: translateY(-7px);
    box-shadow: 0 17px 43px rgba(0,0,0,0.12);
}

.program_card.intensive {
    border-color: var(--sunset-orange);
}

.program_card.workshop {
    border-color: var(--forest-mist);
}

.program_card.corporate {
    border-color: var(--ocean-depths);
}

.program_content {
    padding: 43px;
}

.program_name {
    font-size: 1.6rem;
    color: var(--burnt-sienna);
    margin-bottom: 13px;
}

.program_duration {
    color: var(--sunset-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 23px;
}

.program_summary {
    color: var(--stone-gray);
    margin-bottom: 29px;
    line-height: 1.7;
}

.program_benefits {
    list-style: none;
    margin-bottom: 34px;
}

.program_benefits li {
    position: relative;
    padding-left: 23px;
    margin-bottom: 11px;
    color: var(--stone-gray);
}

.program_benefits li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--sunset-orange);
}

.program_enroll {
    background: var(--burnt-sienna);
    color: white;
    padding: 15px 29px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.program_enroll:hover {
    background: var(--sunset-orange);
    transform: translateY(-2px);
}

/* Contact section */
.contact_section {
    padding: 97px 0;
    background: var(--paper-white);
}

.contact_wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 67px;
    align-items: start;
}

.contact_title {
    font-size: 2.6rem;
    color: var(--burnt-sienna);
    margin-bottom: 29px;
}

.contact_description {
    color: var(--stone-gray);
    margin-bottom: 43px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.contact_item {
    border-left: 4px solid var(--sunset-orange);
    padding-left: 23px;
}

.contact_label {
    font-size: 1.1rem;
    color: var(--burnt-sienna);
    margin-bottom: 7px;
}

.contact_value {
    color: var(--stone-gray);
    line-height: 1.6;
}

/* Form styles */
.contact_form {
    background: white;
    padding: 47px;
    border-radius: 13px;
    box-shadow: 0 11px 29px rgba(0,0,0,0.08);
    border: 2px solid var(--cream-whisper);
}

.form_group {
    margin-bottom: 29px;
}

.form_label {
    display: block;
    margin-bottom: 9px;
    font-weight: 600;
    color: var(--burnt-sienna);
}

.form_input,
.form_select,
.form_textarea {
    width: 100%;
    padding: 15px 19px;
    border: 2px solid var(--cream-whisper);
    border-radius: 7px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
    outline: none;
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.1);
}

.form_textarea {
    resize: vertical;
    min-height: 120px;
}

.form_submit {
    background: var(--sunset-orange);
    color: white;
    padding: 19px 43px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form_submit:hover {
    background: var(--burnt-sienna);
    transform: translateY(-2px);
    box-shadow: 0 7px 19px rgba(247, 127, 0, 0.3);
}

/* Footer */
.site_footer {
    background: var(--charcoal-night);
    color: white;
    padding: 67px 0 29px;
}

.footer_content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 57px;
    margin-bottom: 43px;
}

.footer_logo {
    height: 43px;
    width: auto;
    margin-bottom: 23px;
    filter: brightness(0) invert(1);
}

.footer_tagline {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 29px;
}

.footer_links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 34px;
}

.footer_heading {
    font-size: 1.2rem;
    margin-bottom: 19px;
    color: white;
}

.footer_nav {
    list-style: none;
}

.footer_nav li {
    margin-bottom: 11px;
}

.footer_link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_link:hover {
    color: var(--sunset-orange);
}

.footer_contact {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 13px;
}

.footer_bottom {
    border-top: 1px solid #444;
    padding-top: 29px;
    text-align: center;
}

.footer_copyright {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive design */
@media screen and (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }

    .hero_title {
        font-size: 3rem;
    }

    .section_title {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 1024px) {
    .hero_content,
    .building_content,
    .pressure_content,
    .contact_wrapper {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .hero_banner {
        padding: 89px 0 67px;
    }

    .programs_grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 43px;
    }
}

@media screen and (max-width: 640px) {
    .container {
        padding: 0 17px;
    }

    .hero_title {
        font-size: 2.4rem;
    }

    .section_title {
        font-size: 2rem;
    }

    .hero_buttons {
        flex-direction: column;
        gap: 17px;
    }

    .primary_button,
    .secondary_button {
        text-align: center;
        padding: 15px 29px;
    }

    .assessment_grid,
    .programs_grid {
        grid-template-columns: 1fr;
    }

    .cta_stats {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .contact_form {
        padding: 29px;
    }

    .assessment_card,
    .program_content {
        padding: 29px;
    }
}

/* === ABOUT PAGE STYLES === */

/* About Hero Section */
.about_hero_section {
    background: linear-gradient(137deg, var(--cream-whisper) 0%, var(--paper-white) 100%);
    padding: 147px 0 103px;
    margin-top: 87px;
}

.about_hero_content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 73px;
    align-items: center;
}

.about_main_title {
    font-size: 3.2rem;
    color: var(--burnt-sienna);
    margin-bottom: 31px;
    line-height: 1.15;
}

.about_hero_description {
    font-size: 1.15rem;
    color: var(--stone-gray);
    line-height: 1.85;
}

.about_hero_img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    box-shadow: 0 15px 37px rgba(0,0,0,0.13);
}

/* Research Section */
.stress_research_zone {
    padding: 101px 0;
    background: var(--paper-white);
}

.research_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 59px;
    align-items: center;
}

.research_title {
    font-size: 2.7rem;
    color: var(--burnt-sienna);
    margin-bottom: 27px;
}

.research_description {
    color: var(--stone-gray);
    margin-bottom: 41px;
    font-size: 1.07rem;
    line-height: 1.82;
}

.research_highlights {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.highlight_box {
    border-left: 5px solid var(--sunset-orange);
    padding-left: 27px;
    background: var(--cream-whisper);
    padding: 23px 23px 23px 27px;
    border-radius: 9px;
}

.highlight_title {
    font-size: 1.35rem;
    color: var(--burnt-sienna);
    margin-bottom: 13px;
}

.highlight_text {
    color: var(--stone-gray);
    line-height: 1.73;
}

.research_image {
    width: 100%;
    height: auto;
    border-radius: 17px;
    box-shadow: 0 13px 31px rgba(0,0,0,0.11);
}

/* Philosophy Section */
.resilience_philosophy_area {
    padding: 97px 0;
    background: linear-gradient(43deg, var(--cream-whisper) 0%, var(--paper-white) 100%);
}

.philosophy_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.philosophy_img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    box-shadow: 0 13px 31px rgba(0,0,0,0.11);
}

.philosophy_heading {
    font-size: 2.7rem;
    color: var(--burnt-sienna);
    margin-bottom: 27px;
}

.philosophy_intro {
    color: var(--stone-gray);
    margin-bottom: 37px;
    font-size: 1.07rem;
    line-height: 1.82;
}

.philosophy_principles {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.principle_item {
    border: 2px solid var(--cream-whisper);
    padding: 23px;
    border-radius: 11px;
    transition: all 0.3s ease;
}

.principle_item:hover {
    border-color: var(--sunset-orange);
    background: var(--cream-whisper);
}

.principle_name {
    font-size: 1.25rem;
    color: var(--burnt-sienna);
    margin-bottom: 11px;
}

.principle_desc {
    color: var(--stone-gray);
    line-height: 1.73;
}

/* Success Stories Section */
.success_stories_showcase {
    padding: 103px 0;
    background: var(--paper-white);
}

.stories_header {
    text-align: center;
    margin-bottom: 71px;
}

.stories_main_title {
    font-size: 2.9rem;
    color: var(--burnt-sienna);
    margin-bottom: 25px;
}

.stories_subtitle {
    font-size: 1.13rem;
    color: var(--stone-gray);
    max-width: 670px;
    margin: 0 auto;
}

.stories_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 37px;
}

.story_card {
    background: white;
    border: 3px solid var(--cream-whisper);
    border-radius: 15px;
    padding: 41px;
    transition: all 0.3s ease;
    position: relative;
}

.story_card:hover {
    border-color: var(--sunset-orange);
    transform: translateY(-7px);
    box-shadow: 0 17px 41px rgba(247, 127, 0, 0.17);
}

.story_title {
    font-size: 1.4rem;
    color: var(--burnt-sienna);
    margin-bottom: 19px;
}

.story_quote {
    color: var(--stone-gray);
    font-style: italic;
    line-height: 1.77;
    margin-bottom: 23px;
}

.story_result {
    color: var(--sunset-orange);
    font-weight: 600;
    font-size: 0.97rem;
}

/* Wellness Training Section */
.wellness_training_section {
    padding: 97px 0;
    background: linear-gradient(45deg, var(--cream-whisper) 0%, var(--paper-white) 100%);
}

.wellness_content_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 61px;
    align-items: center;
}

.wellness_title {
    font-size: 2.7rem;
    color: var(--burnt-sienna);
    margin-bottom: 27px;
}

.wellness_description {
    color: var(--stone-gray);
    margin-bottom: 41px;
    font-size: 1.07rem;
    line-height: 1.82;
}

.wellness_features {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.wellness_feature {
    background: white;
    padding: 23px;
    border-radius: 11px;
    border-left: 4px solid var(--sunset-orange);
    box-shadow: 0 5px 17px rgba(0,0,0,0.07);
}

.feature_heading {
    font-size: 1.23rem;
    color: var(--burnt-sienna);
    margin-bottom: 11px;
}

.feature_explanation {
    color: var(--stone-gray);
    line-height: 1.73;
}

.wellness_img {
    width: 100%;
    height: auto;
    border-radius: 17px;
    box-shadow: 0 13px 31px rgba(0,0,0,0.11);
}

/* Management Resources Section */
.management_resources_zone {
    padding: 103px 0;
    background: var(--paper-white);
}

.resources_header {
    text-align: center;
    margin-bottom: 67px;
}

.resources_title {
    font-size: 2.9rem;
    color: var(--burnt-sienna);
    margin-bottom: 25px;
}

.resources_subtitle {
    font-size: 1.13rem;
    color: var(--stone-gray);
    max-width: 650px;
    margin: 0 auto;
}

.resources_showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 41px;
}

.resource_category {
    background: var(--cream-whisper);
    padding: 43px;
    border-radius: 13px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource_category:hover {
    background: white;
    border-color: var(--sunset-orange);
    transform: translateY(-5px);
    box-shadow: 0 13px 29px rgba(247, 127, 0, 0.13);
}

.category_name {
    font-size: 1.5rem;
    color: var(--burnt-sienna);
    margin-bottom: 19px;
}

.category_description {
    color: var(--stone-gray);
    line-height: 1.77;
}

/* About CTA Section */
.about_cta_section {
    background: linear-gradient(139deg, var(--burnt-sienna) 0%, var(--sunset-orange) 100%);
    color: white;
    padding: 89px 0;
    text-align: center;
}

.about_cta_title {
    font-size: 2.9rem;
    margin-bottom: 27px;
    color: white;
}

.about_cta_text {
    font-size: 1.17rem;
    margin-bottom: 47px;
    max-width: 710px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.83;
}

.about_cta_button {
    background: white;
    color: var(--burnt-sienna);
    padding: 19px 41px;
    text-decoration: none;
    border-radius: 9px;
    font-weight: 600;
    font-size: 1.13rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.about_cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 31px rgba(0,0,0,0.23);
}

/* === THANK YOU PAGE STYLES === */

/* Thank You Hero Section */
.thankyou_hero_area {
    background: linear-gradient(133deg, var(--cream-whisper) 0%, var(--paper-white) 100%);
    padding: 151px 0 107px;
    margin-top: 87px;
}

.thankyou_content {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 71px;
    align-items: center;
}

.thankyou_main_title {
    font-size: 3.4rem;
    color: var(--burnt-sienna);
    margin-bottom: 29px;
    line-height: 1.17;
}

.thankyou_description {
    font-size: 1.17rem;
    color: var(--stone-gray);
    margin-bottom: 47px;
    line-height: 1.87;
}

.next_steps_title {
    font-size: 1.8rem;
    color: var(--burnt-sienna);
    margin-bottom: 37px;
}

.steps_list {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.step_item {
    display: flex;
    gap: 23px;
    align-items: flex-start;
}

.step_number {
    background: var(--sunset-orange);
    color: white;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step_heading {
    font-size: 1.27rem;
    color: var(--burnt-sienna);
    margin-bottom: 9px;
}

.step_text {
    color: var(--stone-gray);
    line-height: 1.73;
}

.thankyou_image {
    width: 100%;
    height: auto;
    border-radius: 19px;
    box-shadow: 0 17px 39px rgba(0,0,0,0.15);
}

/* Additional Info Section */
.additional_info_section {
    padding: 89px 0;
    background: var(--paper-white);
}

.info_blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 39px;
}

.info_block {
    background: var(--cream-whisper);
    padding: 37px;
    border-radius: 13px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info_block:hover {
    background: white;
    border-color: var(--sunset-orange);
    transform: translateY(-5px);
    box-shadow: 0 11px 27px rgba(247, 127, 0, 0.13);
}

.info_block_title {
    font-size: 1.43rem;
    color: var(--burnt-sienna);
    margin-bottom: 17px;
}

.info_block_text {
    color: var(--stone-gray);
    line-height: 1.77;
}

/* Motivation Section */
.motivation_area {
    padding: 97px 0;
    background: linear-gradient(41deg, var(--cream-whisper) 0%, var(--paper-white) 100%);
    text-align: center;
}

.motivation_title {
    font-size: 2.8rem;
    color: var(--burnt-sienna);
    margin-bottom: 31px;
}

.motivation_text {
    font-size: 1.13rem;
    color: var(--stone-gray);
    margin-bottom: 51px;
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.83;
}

.motivation_quote {
    background: white;
    padding: 47px;
    border-radius: 15px;
    max-width: 650px;
    margin: 0 auto;
    border-left: 5px solid var(--sunset-orange);
    box-shadow: 0 11px 27px rgba(0,0,0,0.09);
}

.quote_text {
    font-size: 1.23rem;
    color: var(--burnt-sienna);
    font-style: italic;
    line-height: 1.73;
    margin-bottom: 23px;
}

.quote_author {
    color: var(--sunset-orange);
    font-weight: 600;
    font-style: normal;
}

/* Back to Site Section */
.back_to_site_section {
    padding: 83px 0;
    background: var(--paper-white);
    text-align: center;
}

.back_title {
    font-size: 2.3rem;
    color: var(--burnt-sienna);
    margin-bottom: 23px;
}

.back_description {
    font-size: 1.11rem;
    color: var(--stone-gray);
    margin-bottom: 43px;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
}

.back_buttons {
    display: flex;
    gap: 27px;
    justify-content: center;
    flex-wrap: wrap;
}

.back_button {
    padding: 17px 37px;
    text-decoration: none;
    border-radius: 9px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back_button.primary {
    background: var(--sunset-orange);
    color: white;
}

.back_button.primary:hover {
    background: var(--burnt-sienna);
    transform: translateY(-2px);
}

.back_button.secondary {
    background: transparent;
    color: var(--burnt-sienna);
    border: 2px solid var(--burnt-sienna);
}

.back_button.secondary:hover {
    background: var(--burnt-sienna);
    color: white;
    transform: translateY(-2px);
}

/* === RESPONSIVE STYLES FOR BOTH PAGES === */

@media screen and (max-width: 1024px) {
    .about_hero_content,
    .research_layout,
    .philosophy_wrapper,
    .wellness_content_layout,
    .thankyou_content {
        grid-template-columns: 1fr;
        gap: 47px;
    }

    .about_hero_section,
    .thankyou_hero_area {
        padding: 103px 0 73px;
    }

    .stories_grid,
    .resources_showcase,
    .info_blocks {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
}

@media screen and (max-width: 640px) {
    .about_main_title,
    .thankyou_main_title {
        font-size: 2.6rem;
    }

    .research_title,
    .philosophy_heading,
    .wellness_title {
        font-size: 2.2rem;
    }

    .stories_main_title,
    .resources_title,
    .about_cta_title {
        font-size: 2.4rem;
    }

    .story_card,
    .resource_category,
    .info_block {
        padding: 27px;
    }

    .back_buttons {
        flex-direction: column;
        align-items: center;
    }

    .back_button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .steps_list {
        gap: 23px;
    }

    .step_number {
        width: 37px;
        height: 37px;
        font-size: 1.1rem;
    }
}