/* Color Variables */
:root {
    --primary-color: #7209b7;
    --primary-light: #f3e5f9;
    --primary-dark: #4c0677;
    --secondary-color: #2563eb;
    --secondary-light: #dbeafe;
    --tertiary-color: #f59e0b;
    --tertiary-light: #fef3c7;
    --accent-color: #10b981;
    --accent-light: #d1fae5;
    --neutral-color: #6b7280;
    --neutral-light: #f9fafb;
    --info-color: #3b82f6;
    --warning-color: #ef4444;
    --success-color: #059669;
    --text-color: #4c0677;
    --background-color: #ffffff;
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3
}

h1 { font-size: 3.2rem }
h2 { font-size: 2.8rem }
h3 { font-size: 2.2rem }
h4 { font-size: 1.8rem }

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem
}

/* Container and Layout */
.content_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px
}

.presentation_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    min-height: 80vh
}

.dual_content_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center
}

/* Navigation Styles */
.primary_navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(114, 9, 183, 0.15)
}

.navigation_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative
}

.brand_identity img {
    height: 45px;
    width: auto
}

.navigation_toggle {
    display: none
}

.toggle_control {
    display: none
}

.menu_icon {
    width: 32px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease
}

.menu_icon:before,
.menu_icon:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease
}

.menu_icon:before { top: -9px }
.menu_icon:after { top: 9px }

.navigation_container {
    display: flex;
    align-items: center;
    gap: 35px
}

.navigation_element {
    list-style: none
}

.navigation_anchor {
    color: var(--text-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative
}

.navigation_anchor:hover {
    color: var(--primary-color)
}

.navigation_anchor::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease
}

.navigation_anchor:hover::after {
    width: 100%
}

/* Hero Section */
.showcase_workspace {
    padding: 140px 0 85px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.8) 100%)
}

.message_column h1 {
    color: var(--primary-dark);
    margin-bottom: 27px;
    font-size: 3.5rem;
    line-height: 1.2
}

.introduction_text {
    font-size: 1.25rem;
    color: var(--neutral-color);
    margin-bottom: 37px;
    line-height: 1.8
}

.action_controls {
    display: flex;
    gap: 23px;
    flex-wrap: wrap
}

.primary_action_button,
.secondary_action_button {
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block
}

.primary_action_button {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(114, 9, 183, 0.3)
}

.primary_action_button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(114, 9, 183, 0.4)
}

.secondary_action_button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color)
}

.secondary_action_button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px)
}

.hero_visual {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 420px
}

/* Assessment Section */
.assessment_workspace {
    padding: 95px 0;
    background: var(--neutral-light)
}

.section_header {
    text-align: center;
    margin-bottom: 65px
}

.section_title {
    color: var(--primary-dark);
    margin-bottom: 23px
}

.section_description {
    font-size: 1.2rem;
    color: var(--neutral-color);
    max-width: 720px;
    margin: 0 auto
}

.features_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 42px
}

.feature_block {
    background: white;
    padding: 38px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease
}

.feature_block:hover {
    transform: translateY(-8px)
}

.feature_image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 26px
}

.feature_headline {
    color: var(--primary-dark);
    margin-bottom: 17px
}

.feature_text {
    color: var(--neutral-color);
    line-height: 1.7
}

/* Optimization Section */
.optimization_territory {
    padding: 95px 0;
    background: white
}

.territory_title {
    color: var(--primary-dark);
    margin-bottom: 27px
}

.territory_description {
    font-size: 1.2rem;
    color: var(--neutral-color);
    margin-bottom: 35px
}

.benefits_catalog {
    list-style: none;
    margin-bottom: 42px
}

.benefit_item {
    padding: 13px 0;
    border-bottom: 1px solid var(--neutral-light);
    position: relative;
    padding-left: 28px;
    font-size: 1.1rem;
    color: var(--text-color)
}

.benefit_item:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold
}

.territory_action {
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block
}

.territory_action:hover {
    background: var(--success-color);
    transform: translateY(-2px)
}

.territory_image {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    height: 380px;
    object-fit: cover
}

/* Workshop Section */
.workshop_domain {
    padding: 95px 0;
    background: var(--primary-light)
}

.workshop_presentation {
    text-align: center;
    margin-bottom: 65px
}

.workshop_title {
    color: var(--primary-dark);
    margin-bottom: 23px
}

.workshop_overview {
    font-size: 1.2rem;
    color: var(--neutral-color);
    max-width: 720px;
    margin: 0 auto
}

.workshop_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px
}

.workshop_module {
    background: white;
    padding: 35px;
    border-radius: 22px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08)
}

.module_name {
    color: var(--primary-dark);
    margin-bottom: 17px;
    font-size: 1.5rem
}

.module_summary {
    color: var(--neutral-color);
    line-height: 1.7
}

/* Performance Section */
.performance_arena {
    padding: 95px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white
}

.performance_headline {
    color: white;
    margin-bottom: 27px;
    text-align: center
}

.performance_narrative {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 55px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.performance_metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    text-align: center
}

.metric_element {
    display: flex;
    flex-direction: column;
    align-items: center
}

.metric_number {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--accent-light);
    margin-bottom: 8px
}

.metric_label {
    font-size: 1.1rem;
    opacity: 0.9
}

/* CTA Section */
.consultation_invitation {
    padding: 75px 0;
    background: var(--accent-color);
    text-align: center
}

.invitation_content {
    max-width: 720px;
    margin: 0 auto
}

.invitation_headline {
    color: white;
    margin-bottom: 23px
}

.invitation_message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 37px
}

.invitation_button {
    background: white;
    color: var(--accent-color);
    padding: 18px 38px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block
}

.invitation_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15)
}

/* Contact Section */
.contact_workspace {
    padding: 95px 0;
    background: var(--neutral-light)
}

.contact_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: start
}

.contact_title {
    color: var(--primary-dark);
    margin-bottom: 23px
}

.contact_description {
    font-size: 1.1rem;
    color: var(--neutral-color);
    margin-bottom: 37px
}

.company_details {
    display: flex;
    flex-direction: column;
    gap: 17px
}

.detail_item {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.detail_item strong {
    color: var(--primary-dark);
    font-weight: 600
}

.contact_form_container {
    background: white;
    padding: 42px;
    border-radius: 25px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08)
}

.form_group {
    margin-bottom: 26px
}

.form_label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 600
}

.form_input,
.form_select,
.form_textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--neutral-light);
    border-radius: 22px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white
}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1)
}

.form_textarea {
    resize: vertical;
    min-height: 120px
}

.form_submit_button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease
}

.form_submit_button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px)
}

/* Footer Styles */
.page_footer {
    background: var(--primary-dark);
    color: white;
    padding: 65px 0 25px
}

.footer_layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 45px;
    margin-bottom: 42px
}

.footer_logo {
    height: 38px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1)
}

.brand_description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6
}

.footer_heading {
    color: white;
    margin-bottom: 18px;
    font-size: 1.2rem
}

.footer_links {
    list-style: none
}

.footer_links li {
    margin-bottom: 12px
}

.footer_links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease
}

.footer_links a:hover {
    color: var(--accent-light)
}

.footer_contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7)
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .toggle_control {
        display: block;
        cursor: pointer;
        padding: 18px;
        z-index: 2
    }

    .navigation_container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.3s ease;
        padding-top: 85px;
        flex-direction: column;
        align-items: center
    }

    .navigation_element {
        width: 100%;
        text-align: center;
        margin: 18px 0
    }

    .navigation_anchor {
        display: inline-block;
        padding: 12px 25px;
        font-size: 1.2rem
    }

    .navigation_toggle:checked ~ .navigation_container {
        left: 0
    }

    .navigation_toggle:checked ~ .toggle_control .menu_icon {
        background: transparent
    }

    .navigation_toggle:checked ~ .toggle_control .menu_icon:before {
        transform: rotate(45deg);
        top: 0
    }

    .navigation_toggle:checked ~ .toggle_control .menu_icon:after {
        transform: rotate(-45deg);
        top: 0
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content_wrapper {
        padding: 0 18px
    }

    h1 { font-size: 2.5rem }
    h2 { font-size: 2.1rem }
    h3 { font-size: 1.8rem }

    .presentation_grid,
    .dual_content_layout,
    .contact_layout {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .showcase_workspace {
        padding: 120px 0 65px
    }

    .message_column {
        order: 2
    }

    .visual_column {
        order: 1
    }

    .action_controls {
        justify-content: center
    }

    .performance_metrics {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .footer_layout {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center
    }

    .features_layout {
        grid-template-columns: 1fr
    }

    .workshop_grid {
        grid-template-columns: 1fr
    }
}

@media screen and (min-width: 769px) {
    .navigation_container {
        display: flex;
        align-items: center;
        gap: 35px
    }
}

/* About Page Specific Styles */
.about_hero_workspace {
    padding: 140px 0 85px;
    background: linear-gradient(125deg, var(--secondary-light) 0%, rgba(255, 255, 255, 0.9) 100%)
}

.about_presentation_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
    min-height: 75vh
}

.about_primary_headline {
    color: var(--primary-dark);
    margin-bottom: 28px;
    font-size: 3.3rem;
    line-height: 1.2
}

.about_introduction_text {
    font-size: 1.2rem;
    color: var(--neutral-color);
    margin-bottom: 35px;
    line-height: 1.8
}

.about_mission_statement {
    background: rgba(114, 9, 183, 0.05);
    padding: 28px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color)
}

.about_mission_statement h3 {
    color: var(--primary-dark);
    margin-bottom: 15px
}

.about_hero_visual {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    height: 400px
}

/* Science Section */
.science_workspace {
    padding: 90px 0;
    background: var(--neutral-light)
}

.science_header {
    text-align: center;
    margin-bottom: 68px
}

.science_title {
    color: var(--primary-dark);
    margin-bottom: 25px
}

.science_description {
    font-size: 1.15rem;
    color: var(--neutral-color);
    max-width: 750px;
    margin: 0 auto
}

.science_features_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 45px
}

.science_block {
    background: white;
    padding: 40px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.09);
    transition: transform 0.3s ease
}

.science_block:hover {
    transform: translateY(-6px)
}

.science_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px
}

.science_headline {
    color: var(--primary-dark);
    margin-bottom: 18px
}

.science_text {
    color: var(--neutral-color);
    line-height: 1.7
}

/* Philosophy Section */
.philosophy_territory {
    padding: 90px 0;
    background: white
}

.philosophy_dual_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 62px;
    align-items: center
}

.philosophy_title {
    color: var(--primary-dark);
    margin-bottom: 26px
}

.philosophy_description {
    font-size: 1.15rem;
    color: var(--neutral-color);
    margin-bottom: 38px
}

.philosophy_principles h3 {
    color: var(--primary-dark);
    margin-bottom: 22px
}

.principles_catalog {
    list-style: none
}

.principle_item {
    padding: 16px 0;
    border-bottom: 1px solid var(--neutral-light);
    position: relative;
    padding-left: 32px;
    font-size: 1.05rem;
    color: var(--text-color)
}

.principle_item:before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem
}

.philosophy_image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.11);
    height: 360px;
    object-fit: cover
}

/* Stories Section */
.stories_domain {
    padding: 90px 0;
    background: var(--tertiary-light)
}

.stories_presentation {
    text-align: center;
    margin-bottom: 62px
}

.stories_title {
    color: var(--primary-dark);
    margin-bottom: 24px
}

.stories_overview {
    font-size: 1.15rem;
    color: var(--neutral-color);
    max-width: 740px;
    margin: 0 auto
}

.stories_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 38px
}

.story_module {
    background: white;
    padding: 36px;
    border-radius: 20px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08)
}

.story_title {
    color: var(--primary-dark);
    margin-bottom: 18px;
    font-size: 1.4rem
}

.story_summary {
    color: var(--neutral-color);
    line-height: 1.7;
    margin-bottom: 20px
}

.story_metrics {
    text-align: center
}

.story_result {
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem
}

/* Training Section */
.training_arena {
    padding: 90px 0;
    background: linear-gradient(130deg, var(--info-color) 0%, var(--secondary-color) 100%);
    color: white
}

.training_headline {
    color: white;
    margin-bottom: 26px;
    text-align: center
}

.training_narrative {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 52px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto
}

.training_components {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px
}

.component_element {
    background: rgba(255, 255, 255, 0.15);
    padding: 28px;
    border-radius: 18px;
    backdrop-filter: blur(8px)
}

.component_name {
    color: white;
    margin-bottom: 12px;
    font-size: 1.3rem
}

.component_description {
    opacity: 0.9;
    line-height: 1.6
}

/* Research Section */
.research_zone {
    padding: 90px 0;
    background: var(--primary-light)
}

.research_title {
    color: var(--primary-dark);
    margin-bottom: 26px
}

.research_description {
    font-size: 1.15rem;
    color: var(--neutral-color);
    margin-bottom: 38px
}

.research_focus_areas h3 {
    color: var(--primary-dark);
    margin-bottom: 22px
}

.research_topics {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.research_tag {
    background: var(--primary-color);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500
}

/* Wellness Section */
.wellness_territory {
    padding: 90px 0;
    background: white
}

.wellness_presentation {
    text-align: center;
    margin-bottom: 62px
}

.wellness_title {
    color: var(--primary-dark);
    margin-bottom: 24px
}

.wellness_overview {
    font-size: 1.15rem;
    color: var(--neutral-color);
    max-width: 740px;
    margin: 0 auto
}

.wellness_programs_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 38px
}

.program_card {
    background: var(--neutral-light);
    padding: 36px;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease
}

.program_card:hover {
    transform: translateY(-5px)
}

.program_name {
    color: var(--primary-dark);
    margin-bottom: 18px;
    font-size: 1.4rem
}

.program_description {
    color: var(--neutral-color);
    line-height: 1.7;
    margin-bottom: 24px
}

.program_duration {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--warning-color);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600
}

/* Resources Final */
.resources_final {
    padding: 90px 0;
    background: var(--accent-light)
}

.resources_headline {
    color: var(--primary-dark);
    margin-bottom: 26px;
    text-align: center
}

.resources_message {
    font-size: 1.15rem;
    color: var(--neutral-color);
    text-align: center;
    margin-bottom: 48px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto
}

.resources_categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px
}

.resource_category {
    text-align: center;
    padding: 28px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08)
}

.resource_category h4 {
    color: var(--primary-dark);
    margin-bottom: 15px
}

.resource_category p {
    color: var(--neutral-color);
    font-size: 0.95rem
}

/* Thank You Page Styles */
.thankyou_hero_workspace {
    padding: 140px 0 85px;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center
}

.thankyou_content_center {
    max-width: 800px;
    margin: 0 auto
}

.thankyou_icon_container {
    margin-bottom: 32px
}

.success_checkmark {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    line-height: 80px;
    font-size: 48px;
    font-weight: bold;
    color: white;
    backdrop-filter: blur(10px)
}

.thankyou_headline {
    color: white;
    margin-bottom: 28px;
    font-size: 3.2rem
}

.thankyou_message {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 55px
}

.next_steps_container {
    background: rgba(255, 255, 255, 0.15);
    padding: 45px;
    border-radius: 25px;
    margin-bottom: 48px;
    backdrop-filter: blur(12px)
}

.next_steps_title {
    color: white;
    margin-bottom: 35px;
    text-align: center
}

.steps_timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.step_item {
    text-align: center
}

.step_number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--success-color);
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 18px
}

.step_content h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.2rem
}

.step_content p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6
}

.thankyou_visual_section {
    margin: 48px 0
}

.thankyou_image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    height: 300px;
    object-fit: cover
}

.while_waiting_section {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 22px;
    margin-bottom: 35px;
    backdrop-filter: blur(8px)
}

.waiting_title {
    color: white;
    margin-bottom: 18px
}

.waiting_description {
    opacity: 0.9;
    margin-bottom: 28px
}

.waiting_actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap
}

.waiting_button {
    padding: 14px 28px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block
}

.primary_waiting {
    background: white;
    color: var(--success-color)
}

.primary_waiting:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3)
}

.secondary_waiting {
    background: transparent;
    color: white;
    border: 2px solid white
}

.secondary_waiting:hover {
    background: white;
    color: var(--success-color)
}

.contact_reminder_section {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 18px;
    backdrop-filter: blur(8px)
}

.reminder_title {
    color: white;
    margin-bottom: 15px
}

.reminder_text {
    opacity: 0.9;
    margin-bottom: 18px
}

.emergency_contact {
    font-size: 1.1rem
}

.emergency_contact strong {
    opacity: 0.9
}

/* Resources Preview Section */
.resources_preview_section {
    padding: 85px 0;
    background: var(--neutral-light)
}

.resources_preview_content {
    text-align: center
}

.preview_title {
    color: var(--primary-dark);
    margin-bottom: 24px
}

.preview_description {
    font-size: 1.15rem;
    color: var(--neutral-color);
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.preparation_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px
}

.preparation_item {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08)
}

.preparation_item h4 {
    color: var(--primary-dark);
    margin-bottom: 15px
}

.preparation_item p {
    color: var(--neutral-color);
    font-size: 0.95rem;
    line-height: 1.6
}

/* Responsive Design for New Pages */
@media screen and (max-width: 768px) {
    .about_presentation_grid,
    .philosophy_dual_layout {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .about_primary_headline {
        font-size: 2.5rem
    }

    .science_features_layout,
    .stories_grid,
    .wellness_programs_grid {
        grid-template-columns: 1fr
    }

    .training_components,
    .resources_categories,
    .preparation_grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .steps_timeline {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .thankyou_headline {
        font-size: 2.3rem
    }

    .waiting_actions {
        flex-direction: column;
        align-items: center
    }

    .waiting_button {
        width: 100%;
        max-width: 280px;
        text-align: center
    }
}

@media screen and (max-width: 480px) {
    .next_steps_container,
    .while_waiting_section,
    .contact_reminder_section {
        padding: 28px 20px
    }

    .success_checkmark {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 36px
    }

    .step_number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px
    }
}