/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brand: #fb8500;
    --primary-subtle: #fff4e6;
    --primary-emphasis: #b35e00;
    --secondary-color: #219ebc;
    --secondary-light: #e6f7fa;
    --tertiary-color: #ffb700;
    --tertiary-light: #fff8e1;
    --accent-color: #8ecae6;
    --accent-light: #f0fbff;
    --neutral-color: #495057;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #dc3545;
    --success-color: #28a745;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --ocean-blue: #023047;
    --forest-green: #2d5016;
    --sunset-orange: #fb8500;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--neutral-light);
}

.content_container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Header & Navigation */
.primary_navigation {
    background: #fff;
    box-shadow: 0 3px 13px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brand_identity img {
    height: 47px;
    width: auto;
}

.navigation_checkbox {
    display: none;
}

.toggle_control {
    display: none;
}

.menu_indicator {
    width: 29px;
    height: 3px;
    background: var(--ocean-blue);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu_indicator:before,
.menu_indicator:after {
    content: '';
    position: absolute;
    width: 29px;
    height: 3px;
    background: var(--ocean-blue);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu_indicator:before {
    top: -9px;
}

.menu_indicator:after {
    top: 9px;
}

.menu_collection {
    display: flex;
    list-style: none;
    gap: 34px;
}

.menu_connection {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu_connection:hover {
    color: var(--primary-brand);
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .toggle_control {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .navigation_panel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 87px;
    }

    .menu_collection {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .menu_element {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .menu_connection {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
        color: var(--text-primary);
    }

    .navigation_checkbox:checked ~ .navigation_panel {
        left: 0;
    }

    .navigation_checkbox:checked ~ .toggle_control .menu_indicator {
        background: transparent;
    }

    .navigation_checkbox:checked ~ .toggle_control .menu_indicator:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navigation_checkbox:checked ~ .toggle_control .menu_indicator:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (min-width: 891px) {
    .navigation_panel {
        display: block;
    }

    .menu_collection {
        display: flex;
        gap: 34px;
    }
}

/* Navigation Wrapper Styles */
.navigation_panel {
    display: flex;
    align-items: center;
    gap: 21px;
}

.menu_element {
    list-style: none;
}

/* Hero Section */
.hero_showcase {
    background: linear-gradient(135deg, var(--primary-subtle) 0%, #fff 100%);
    padding: 87px 0;
    min-height: 640px;
}

.presentation_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.primary_headline {
    font-family: 'Raleway', sans-serif;
    font-size: 3.1rem;
    font-weight: 700;
    color: var(--primary-emphasis);
    margin-bottom: 21px;
    line-height: 1.2;
}

.supporting_description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 34px;
    line-height: 1.7;
}

.action_cluster {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary_trigger,
.secondary_trigger {
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: inline-block;
}

.primary_trigger {
    background: var(--primary-brand);
    color: #fff;
}

.primary_trigger:hover {
    background: var(--primary-emphasis);
    transform: translateY(-2px);
}

.secondary_trigger {
    background: transparent;
    color: var(--primary-brand);
    border: 2px solid var(--primary-brand);
}

.secondary_trigger:hover {
    background: var(--primary-brand);
    color: #fff;
}

.hero_visual {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Services Section */
.expertise_showcase {
    padding: 97px 0;
    background: #fff;
}

.section_header {
    text-align: center;
    margin-bottom: 67px;
}

.section_title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.7rem;
    color: var(--primary-emphasis);
    margin-bottom: 17px;
}

.section_subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.services_arrangement {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 47px;
}

.service_unit {
    text-align: center;
    padding: 34px 21px;
    transition: transform 0.3s ease;
}

.service_unit:hover {
    transform: translateY(-7px);
}

.service_graphic {
    margin-bottom: 21px;
    overflow: hidden;
}

.service_graphic img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service_unit:hover .service_graphic img {
    transform: scale(1.05);
}

.service_heading {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-emphasis);
    margin-bottom: 13px;
}

.service_summary {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Methodology Section */
.methodology_display {
    padding: 97px 0;
    background: var(--primary-subtle);
}

.approach_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.methodology_title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    color: var(--primary-emphasis);
    margin-bottom: 21px;
}

.methodology_description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 29px;
    line-height: 1.7;
}

.benefits_listing {
    list-style: none;
    margin-bottom: 34px;
}

.benefits_listing li {
    padding: 8px 0;
    position: relative;
    padding-left: 21px;
    color: var(--text-primary);
}

.benefits_listing li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-brand);
    font-weight: bold;
}

.action_button {
    background: var(--primary-brand);
    color: #fff;
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.action_button:hover {
    background: var(--primary-emphasis);
    transform: translateY(-2px);
}

.methodology_image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Workshop Section */
.workshop_presentation {
    padding: 97px 0;
    background: var(--accent-light);
}

.workshop_headline {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    color: var(--primary-emphasis);
    text-align: center;
    margin-bottom: 21px;
}

.workshop_intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 55px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.event_schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.event_item {
    background: #fff;
    padding: 34px;
    box-shadow: 0 5px 17px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.event_item:hover {
    transform: translateY(-5px);
}

.event_title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-emphasis);
    margin-bottom: 13px;
}

.event_description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.consultation_invitation {
    padding: 87px 0;
    background: var(--primary-brand);
    text-align: center;
}

.cta_headline {
    font-family: 'Raleway', sans-serif;
    font-size: 2.7rem;
    color: #fff;
    margin-bottom: 21px;
}

.cta_message {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 34px;
    opacity: 0.9;
}

.cta_button {
    background: #fff;
    color: var(--primary-brand);
    padding: 19px 42px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta_button:hover {
    background: var(--neutral-light);
    transform: translateY(-3px);
}

/* Contact Section */
.contact_workspace {
    padding: 97px 0;
    background: #fff;
}

.contact_arrangement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
}

.contact_title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    color: var(--primary-emphasis);
    margin-bottom: 21px;
}

.contact_description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 42px;
    line-height: 1.7;
}

.company_details {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.detail_block h3 {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-emphasis);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.detail_block p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Form */
.contact_form_wrapper {
    background: var(--neutral-light);
    padding: 42px;
    border-radius: 0;
}

.consultation_form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.form_cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
}

.input_group {
    display: flex;
    flex-direction: column;
}

.input_group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.input_group input,
.input_group select,
.input_group textarea {
    padding: 13px;
    border: 2px solid #e9ecef;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.input_group input:focus,
.input_group select:focus,
.input_group textarea:focus {
    outline: none;
    border-color: var(--primary-brand);
}

.form_submit {
    background: var(--primary-brand);
    color: #fff;
    padding: 17px 34px;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 13px;
}

.form_submit:hover {
    background: var(--primary-emphasis);
    transform: translateY(-2px);
}

/* Footer */
.site_footer {
    background: var(--ocean-blue);
    color: #fff;
    padding: 67px 0 21px;
}

.footer_layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 47px;
    margin-bottom: 42px;
}

.footer_logo {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 17px;
}

.brand_description {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 21px;
}

.footer_navigation h3,
.footer_contact h3 {
    font-family: 'Raleway', sans-serif;
    margin-bottom: 17px;
    color: #fff;
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 8px;
}

.footer_links a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_links a:hover {
    color: var(--primary-brand);
}

.footer_contact p {
    color: #b8c5d1;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer_bottom {
    border-top: 1px solid #34495e;
    padding-top: 21px;
    text-align: center;
}

.footer_bottom p {
    color: #b8c5d1;
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .content_container {
        max-width: 1200px;
        padding: 0 19px;
    }

    .primary_headline {
        font-size: 2.7rem;
    }
}

@media screen and (max-width: 890px) {
    .presentation_grid,
    .approach_layout,
    .contact_arrangement {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .primary_headline {
        font-size: 2.3rem;
    }

    .section_title {
        font-size: 2.2rem;
    }

    .hero_showcase {
        padding: 67px 0;
    }

    .expertise_showcase,
    .methodology_display,
    .workshop_presentation,
    .contact_workspace {
        padding: 67px 0;
    }

    .footer_layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .form_cluster {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .content_container {
        padding: 0 17px;
    }

    .primary_headline {
        font-size: 1.9rem;
    }

    .section_title {
        font-size: 1.8rem;
    }

    .services_arrangement {
        grid-template-columns: 1fr;
    }

    .action_cluster {
        flex-direction: column;
        align-items: center;
    }

    .primary_trigger,
    .secondary_trigger {
        text-align: center;
        width: 100%;
        max-width: 280px;
    }

    .contact_form_wrapper {
        padding: 21px;
    }
}

/* About Page Styles */
.philosophy_showcase {
    padding: 87px 0;
    background: linear-gradient(135deg, var(--secondary-light) 0%, #fff 100%);
}

.philosophy_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.about_headline {
    font-family: 'Raleway', sans-serif;
    font-size: 2.9rem;
    color: var(--primary-emphasis);
    margin-bottom: 29px;
    line-height: 1.2;
}

.philosophy_description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 21px;
    line-height: 1.7;
}

.philosophy_mission {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

.about_image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.expert_presentation {
    padding: 97px 0;
    background: #fff;
}

.expert_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.expert_title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    color: var(--primary-emphasis);
    margin-bottom: 21px;
}

.expert_description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 34px;
    line-height: 1.7;
}

.expertise_highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 21px;
}

.highlight_item {
    text-align: center;
    padding: 21px;
    background: var(--neutral-light);
}

.highlight_item h4 {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-brand);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.highlight_item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.expert_image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.methods_showcase {
    padding: 97px 0;
    background: var(--tertiary-light);
}

.methods_header {
    text-align: center;
    margin-bottom: 67px;
}

.methods_title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.7rem;
    color: var(--primary-emphasis);
    margin-bottom: 17px;
}

.methods_subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.methods_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 42px;
}

.method_card {
    background: #fff;
    padding: 34px;
    text-align: center;
    box-shadow: 0 7px 21px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.method_card:hover {
    transform: translateY(-8px);
}

.method_icon {
    margin-bottom: 21px;
    overflow: hidden;
}

.method_icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.method_name {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-emphasis);
    margin-bottom: 13px;
}

.method_description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.success_stories {
    padding: 97px 0;
    background: #fff;
}

.success_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.success_title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    color: var(--primary-emphasis);
    margin-bottom: 21px;
}

.success_introduction {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 34px;
    line-height: 1.7;
}

.achievement_list {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.achievement_item {
    padding: 17px;
    border-left: 4px solid var(--primary-brand);
    background: var(--neutral-light);
}

.achievement_item h4 {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-emphasis);
    margin-bottom: 8px;
}

.achievement_item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.success_image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.journey_presentation {
    padding: 97px 0;
    background: var(--accent-light);
}

.journey_title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.7rem;
    color: var(--primary-emphasis);
    text-align: center;
    margin-bottom: 21px;
}

.journey_description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 55px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.process_steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
}

.process_step {
    background: #fff;
    padding: 34px;
    text-align: center;
    position: relative;
}

.step_number {
    background: var(--primary-brand);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 21px;
}

.step_title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-emphasis);
    margin-bottom: 13px;
}

.step_description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Thank You Page Styles */
.thankyou_showcase {
    padding: 87px 0;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--secondary-light) 100%);
    min-height: 640px;
}

.thankyou_content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 67px;
    align-items: center;
}

.confirmation_visual {
    text-align: center;
}

.thankyou_image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
}

.thankyou_headline {
    font-family: 'Raleway', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-emphasis);
    margin-bottom: 21px;
    line-height: 1.2;
}

.confirmation_description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 34px;
    line-height: 1.7;
}

.next_steps {
    margin-bottom: 34px;
    padding: 21px;
    background: rgba(255,255,255,0.7);
    border-radius: 0;
}

.steps_title {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-emphasis);
    margin-bottom: 17px;
}

.steps_list {
    list-style: none;
    padding-left: 0;
}

.steps_list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--text-primary);
}

.steps_list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.contact_reminder {
    background: #fff;
    padding: 21px;
    margin-bottom: 34px;
    text-align: center;
}

.reminder_title {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-emphasis);
    margin-bottom: 13px;
}

.reminder_text {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.phone_number {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-brand);
    margin-bottom: 8px;
}

.office_hours {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.action_buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.return_home,
.learn_more {
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.return_home {
    background: var(--primary-brand);
    color: #fff;
}

.return_home:hover {
    background: var(--primary-emphasis);
    transform: translateY(-2px);
}

.learn_more {
    background: transparent;
    color: var(--primary-brand);
    border: 2px solid var(--primary-brand);
}

.learn_more:hover {
    background: var(--primary-brand);
    color: #fff;
}

.resources_section {
    padding: 67px 0;
    background: #fff;
}

.resources_title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    color: var(--primary-emphasis);
    text-align: center;
    margin-bottom: 21px;
}

.resources_description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 47px;
}

.resource_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 29px;
}

.resource_card {
    background: var(--neutral-light);
    padding: 29px;
    text-align: center;
}

.resource_card h4 {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-emphasis);
    margin-bottom: 13px;
}

.resource_card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive adjustments for About and Thank You pages */
@media screen and (max-width: 890px) {
    .philosophy_grid,
    .expert_layout,
    .success_layout,
    .thankyou_content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about_headline,
    .thankyou_headline {
        font-size: 2.3rem;
    }

    .methods_title,
    .journey_title,
    .resources_title {
        font-size: 2.2rem;
    }

    .expertise_highlights {
        grid-template-columns: 1fr;
    }

    .action_buttons {
        flex-direction: column;
        align-items: center;
    }

    .return_home,
    .learn_more {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .about_headline,
    .thankyou_headline {
        font-size: 1.9rem;
    }

    .methods_grid,
    .process_steps,
    .resource_cards {
        grid-template-columns: 1fr;
    }

    .contact_reminder {
        padding: 17px;
    }
}