/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    --ocean-blue: #f77f00;
    --sunset-cream: #fef4e6;
    --forest-dark: #d45500;
    --secondary-color: #2c5aa0;
    --secondary-light: #e8f2ff;
    --tertiary-color: #f39c12;
    --tertiary-light: #fef9e7;
    --accent-color: #27ae60;
    --accent-light: #e8f8f5;
    --neutral-color: #bdc3c7;
    --neutral-light: #f8f9fa;
    --info-color: #3498db;
    --warning-color: #e74c3c;
    --success-color: #2ecc71;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --background-primary: #ffffff;
    --shadow-subtle: 0 3px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 7px 28px rgba(0, 0, 0, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 13px;
    --border-radius-lg: 21px;
    --transition-smooth: all 0.34s cubic-bezier(0.23, 1, 0.32, 1);
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Source Sans Pro', sans-serif;
}

/* Base Typography */
body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-primary);
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 17px;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.9rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 19px;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--ocean-blue);
    transition: var(--transition-smooth);
}

/* Container System */
.core_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 23px;
}

/* Header Styles */
.main_workspace {
    background: var(--background-primary);
    padding: 17px 0;
    box-shadow: var(--shadow-subtle);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav_panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand_symbol img {
    height: 42px;
    width: auto;
}

.nav_toggle {
    display: none;
}

.nav_toggle_trigger {
    display: none;
    cursor: pointer;
    padding: 13px;
    z-index: 2;
}

.menu_lines {
    width: 28px;
    height: 3px;
    background: var(--forest-dark);
    position: relative;
    transition: var(--transition-smooth);
}

.menu_lines:before,
.menu_lines:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--forest-dark);
    transition: var(--transition-smooth);
}

.menu_lines:before { top: -9px; }
.menu_lines:after { top: 9px; }

.navigation_wrapper {
    display: flex;
    align-items: center;
}

.nav_collection {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
}

.nav_connection {
    color: var(--text-primary);
    font-weight: 500;
    padding: 13px 0;
    position: relative;
}

.nav_connection:hover {
    color: var(--ocean-blue);
}

.nav_connection::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

.nav_connection:hover::after {
    width: 100%;
}

/* Hero Section */
.hero_showcase {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--sunset-cream) 0%, #fff5e6 100%);
}

.hero_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero_text_zone {
    max-width: 580px;
}

.primary_headline {
    color: var(--forest-dark);
    margin-bottom: 21px;
    line-height: 1.2;
}

.hero_description {
    font-size: 1.1rem;
    margin-bottom: 34px;
    color: var(--text-secondary);
}

.action_buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary_action_btn, .secondary_action_btn {
    padding: 17px 34px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: 2px solid var(--ocean-blue);
    display: inline-block;
}

.primary_action_btn {
    background: var(--ocean-blue);
    color: white;
}

.primary_action_btn:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.secondary_action_btn {
    background: transparent;
    color: var(--ocean-blue);
}

.secondary_action_btn:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
}

.hero_visual_area {
    text-align: center;
}

.hero_image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

/* Services Section */
.services_preview {
    padding: 89px 0;
    background: var(--background-primary);
}

.section_intro {
    text-align: center;
    margin-bottom: 67px;
}

.section_title {
    color: var(--forest-dark);
    margin-bottom: 17px;
}

.section_subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.services_showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.service_card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 34px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service_card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-medium);
    border-color: var(--ocean-blue);
}

.service_visual {
    margin-bottom: 23px;
    text-align: center;
}

.service_visual img {
    width: 100%;
    max-width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.service_heading {
    color: var(--forest-dark);
    margin-bottom: 15px;
}

.service_description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Programs Section */
.programs_area {
    padding: 89px 0;
    background: var(--neutral-light);
}

.programs_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.content_headline {
    color: var(--forest-dark);
    margin-bottom: 23px;
}

.content_text {
    margin-bottom: 34px;
    font-size: 1.05rem;
}

.features_listing {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.feature_point {
    padding: 21px;
    background: white;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--ocean-blue);
}

.feature_point h4 {
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.feature_point p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.programs_visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}

/* CTA Section */
.cta_showcase {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--forest-dark) 100%);
    color: white;
}

.cta_content_center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta_headline {
    color: white;
    margin-bottom: 21px;
}

.cta_description {
    font-size: 1.1rem;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
}

.cta_primary_button {
    background: white;
    color: var(--ocean-blue);
    padding: 17px 34px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.cta_primary_button:hover {
    background: var(--sunset-cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact_workspace {
    padding: 89px 0;
    background: var(--background-primary);
}

.contact_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.contact_title {
    color: var(--forest-dark);
    margin-bottom: 21px;
}

.contact_intro {
    margin-bottom: 34px;
    font-size: 1.05rem;
}

.info_blocks {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.info_block h4 {
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.info_block p {
    color: var(--text-secondary);
    margin: 0;
}

/* Form Styles */
.consultation_form {
    background: white;
    padding: 34px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 2px solid var(--neutral-color);
}

.form_group {
    margin-bottom: 23px;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    color: var(--forest-dark);
    font-weight: 500;
}

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 13px;
    border: 2px solid var(--neutral-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.1);
}

.form_submit_btn {
    background: var(--ocean-blue);
    color: white;
    padding: 17px 34px;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.form_submit_btn:hover {
    background: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.site_footer {
    background: var(--text-primary);
    color: white;
    padding: 55px 0 23px;
}

.footer_content_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 34px;
    margin-bottom: 34px;
}

.footer_logo {
    height: 38px;
    width: auto;
    margin-bottom: 17px;
    filter: brightness(0) invert(1);
}

.footer_description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer_navigation h4,
.footer_policies h4,
.footer_contact h4 {
    color: white;
    margin-bottom: 17px;
    font-size: 1.1rem;
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 8px;
}

.footer_links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer_links a:hover {
    color: var(--ocean-blue);
}

.footer_contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer_bottom {
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer_bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .nav_toggle_trigger {
        display: block;
    }

    .navigation_wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: var(--transition-smooth);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

    .nav_collection {
        flex-direction: column;
        align-items: center;
        gap: 21px;
    }

    .nav_element {
        width: 100%;
        text-align: center;
    }

    .nav_connection {
        display: block;
        padding: 17px 23px;
        font-size: 1.1rem;
    }

    .nav_toggle:checked ~ .navigation_wrapper {
        left: 0;
    }

    .nav_toggle:checked ~ .nav_toggle_trigger .menu_lines {
        background: transparent;
    }

    .nav_toggle:checked ~ .nav_toggle_trigger .menu_lines:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav_toggle:checked ~ .nav_toggle_trigger .menu_lines:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1100px) {
    .core_container {
        padding: 0 21px;
    }

    .hero_content_grid,
    .programs_layout,
    .contact_layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer_content_grid {
        grid-template-columns: 1fr 1fr;
        gap: 23px;
    }
}

@media screen and (max-width: 640px) {
    .core_container {
        padding: 0 17px;
    }

    .hero_showcase {
        padding: 120px 0 55px;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.5rem; }

    .services_preview,
    .programs_area,
    .contact_workspace {
        padding: 55px 0;
    }

    .action_buttons {
        flex-direction: column;
    }

    .primary_action_btn,
    .secondary_action_btn {
        text-align: center;
    }

    .services_showcase {
        grid-template-columns: 1fr;
    }

    .service_card {
        padding: 23px;
    }

    .footer_content_grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .consultation_form {
        padding: 23px;
    }
}

/* About Page Styles */
.about_hero_area {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--sunset-cream) 0%, #fff8f0 100%);
    text-align: center;
}

.about_main_title {
    color: var(--forest-dark);
    margin-bottom: 23px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.about_intro_text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Education Section */
.education_showcase {
    padding: 89px 0;
    background: var(--background-primary);
}

.education_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.education_title {
    color: var(--forest-dark);
    margin-bottom: 21px;
}

.education_description {
    margin-bottom: 34px;
    font-size: 1.05rem;
}

.education_features {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.feature_item {
    padding: 19px;
    background: var(--sunset-cream);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--ocean-blue);
}

.feature_item h4 {
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.feature_item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.education_visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}

/* Philosophy Section */
.philosophy_area {
    padding: 89px 0;
    background: var(--neutral-light);
}

.philosophy_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.philosophy_headline {
    color: var(--forest-dark);
    margin-bottom: 23px;
}

.philosophy_text {
    margin-bottom: 34px;
    font-size: 1.05rem;
}

.philosophy_principles {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.principle_block {
    padding: 21px;
    background: white;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--secondary-color);
}

.principle_block h4 {
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.principle_block p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.philosophy_visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}

/* Success Stories */
.success_stories {
    padding: 89px 0;
    background: var(--background-primary);
}

.stories_header {
    text-align: center;
    margin-bottom: 67px;
}

.stories_title {
    color: var(--forest-dark);
    margin-bottom: 17px;
}

.stories_subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.stories_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.story_card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.story_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.story_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story_content {
    padding: 28px;
}

.story_content h3 {
    color: var(--forest-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.story_content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Planning Expertise */
.planning_expertise {
    padding: 89px 0;
    background: var(--neutral-light);
}

.planning_content_center {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.planning_title {
    color: var(--forest-dark);
    margin-bottom: 23px;
}

.planning_description {
    font-size: 1.1rem;
    margin-bottom: 47px;
    color: var(--text-secondary);
}

.expertise_areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.expertise_column {
    background: white;
    padding: 28px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border-top: 4px solid var(--ocean-blue);
}

.expertise_column h4 {
    color: var(--forest-dark);
    margin-bottom: 15px;
}

.expertise_column p {
    color: var(--text-secondary);
    margin: 0;
}

/* Investment Training */
.investment_training {
    padding: 89px 0;
    background: var(--background-primary);
}

.training_layout {
    max-width: 890px;
    margin: 0 auto;
    text-align: center;
}

.training_headline {
    color: var(--forest-dark);
    margin-bottom: 23px;
}

.training_text {
    font-size: 1.05rem;
    margin-bottom: 47px;
    color: var(--text-secondary);
}

.training_modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.module_item {
    background: var(--sunset-cream);
    padding: 28px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--tertiary-color);
}

.module_item h4 {
    color: var(--forest-dark);
    margin-bottom: 13px;
}

.module_item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Partners Network */
.partners_network {
    padding: 89px 0;
    background: var(--neutral-light);
}

.partners_intro {
    text-align: center;
    margin-bottom: 55px;
}

.partners_title {
    color: var(--forest-dark);
    margin-bottom: 21px;
}

.partners_description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.partners_benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.benefit_card {
    background: white;
    padding: 34px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    text-align: center;
    transition: var(--transition-smooth);
    border-top: 4px solid var(--accent-color);
}

.benefit_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit_card h4 {
    color: var(--forest-dark);
    margin-bottom: 17px;
}

.benefit_card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Resources Library */
.resources_library {
    padding: 89px 0;
    background: var(--background-primary);
}

.resources_content {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.resources_title {
    color: var(--forest-dark);
    margin-bottom: 23px;
}

.resources_intro {
    font-size: 1.1rem;
    margin-bottom: 55px;
    color: var(--text-secondary);
}

.resources_categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.resource_category {
    background: white;
    padding: 28px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border-left: 4px solid var(--info-color);
}

.resource_category h4 {
    color: var(--forest-dark);
    margin-bottom: 13px;
}

.resource_category p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Thank You Page Styles */
.thankyou_showcase {
    padding: 140px 0 89px;
    background: linear-gradient(135deg, var(--sunset-cream) 0%, #fff5e6 100%);
}

.thankyou_content_center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
}

.thankyou_image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.thankyou_headline {
    color: var(--forest-dark);
    margin-bottom: 21px;
}

.thankyou_message {
    font-size: 1.1rem;
    margin-bottom: 34px;
    color: var(--text-secondary);
}

.next_steps {
    margin-bottom: 47px;
}

.steps_title {
    color: var(--forest-dark);
    margin-bottom: 28px;
    text-align: center;
}

.steps_list {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.step_item {
    display: flex;
    gap: 21px;
    align-items: flex-start;
}

.step_number {
    background: var(--ocean-blue);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step_content h4 {
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.step_content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.thankyou_actions {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.return_home_btn, .learn_more_btn {
    padding: 17px 34px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: 2px solid var(--ocean-blue);
    display: inline-block;
    text-align: center;
}

.return_home_btn {
    background: var(--ocean-blue);
    color: white;
}

.return_home_btn:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.learn_more_btn {
    background: transparent;
    color: var(--ocean-blue);
}

.learn_more_btn:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
}

/* Additional Information Section */
.additional_info {
    padding: 89px 0;
    background: var(--background-primary);
}

.info_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.info_card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 28px;
    box-shadow: var(--shadow-subtle);
    text-align: center;
    transition: var(--transition-smooth);
    border-top: 4px solid var(--success-color);
}

.info_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info_visual {
    margin-bottom: 21px;
}

.info_visual img {
    width: 100%;
    max-width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.info_card h4 {
    color: var(--forest-dark);
    margin-bottom: 15px;
}

.info_card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for About and Thank You Pages */
@media screen and (max-width: 1100px) {
    .education_grid,
    .philosophy_layout,
    .thankyou_content_center {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .philosophy_layout .philosophy_visual {
        order: -1;
    }
}

@media screen and (max-width: 640px) {
    .about_hero_area,
    .thankyou_showcase {
        padding: 120px 0 55px;
    }

    .education_showcase,
    .philosophy_area,
    .success_stories,
    .planning_expertise,
    .investment_training,
    .partners_network,
    .resources_library,
    .additional_info {
        padding: 55px 0;
    }

    .stories_grid,
    .expertise_areas,
    .training_modules,
    .partners_benefits,
    .resources_categories,
    .info_grid {
        grid-template-columns: 1fr;
    }

    .thankyou_actions {
        flex-direction: column;
    }

    .step_item {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .step_number {
        margin: 0 auto;
    }
}