/* Custom Color Variables - Retro/Vintage Theme */
:root {
    --primary-purple: #390099;
    --light-lavender: #ebe6f5;
    --deep-violet: #25006b;
    --accent-cream: #f8f7f3;
    --shadow-grey: rgba(57, 0, 153, 0.15);
    --text-dark: #25006b;
    --text-medium: #390099;
    --border-subtle: rgba(57, 0, 153, 0.2);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--accent-cream);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 13px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Layout Containers */
.content_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Navigation Styles */
.primary_navigation {
    background: var(--light-lavender);
    box-shadow: 0 4px 15px var(--shadow-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-purple);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    position: relative;
}

.brand_identity img {
    height: 55px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 34px;
    height: 4px;
    background: var(--primary-purple);
    position: relative;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 4px;
    background: var(--primary-purple);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before {
    top: -10px;
}

.hamburger:after {
    top: 10px;
}

.nav_wrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav_element {
    list-style: none;
}

.nav_connection {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 7px;
    transition: all 0.25s ease;
}

.nav_connection:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-grey);
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 18px;
        z-index: 2;
    }

    .nav_wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--light-lavender);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 120px;
        flex-direction: column;
        align-items: center;
    }

    .nav_element {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .nav_connection {
        display: inline-block;
        padding: 16px 34px;
        font-size: 20px;
        color: var(--text-dark);
    }

    .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_showcase {
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--accent-cream) 100%);
    padding: 89px 0;
    overflow: hidden;
}

.hero_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.primary_headline {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 21px;
    color: var(--deep-violet);
}

.hero_description {
    font-size: 18px;
    margin-bottom: 34px;
    color: var(--text-medium);
    line-height: 1.7;
}

.hero_action_zone {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary_cta_button {
    background: var(--primary-purple);
    color: white;
    padding: 16px 34px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 8px 25px var(--shadow-grey);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.primary_cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-grey);
    background: var(--deep-violet);
}

.secondary_outline_button {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    background: transparent;
    transition: all 0.25s ease;
}

.secondary_outline_button:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.hero_main_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 15px 45px var(--shadow-grey);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.hero_main_image:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Silent Strength Section */
.silent_strength_block {
    padding: 89px 0;
    background: white;
}

.section_header_area {
    text-align: center;
    margin-bottom: 55px;
}

.section_main_title {
    font-size: 2.8rem;
    margin-bottom: 13px;
    color: var(--deep-violet);
}

.section_subtitle {
    font-size: 19px;
    color: var(--text-medium);
    max-width: 640px;
    margin: 0 auto;
}

.features_display_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.feature_showcase_card {
    background: var(--light-lavender);
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 30px var(--shadow-grey);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature_showcase_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px var(--shadow-grey);
}

.feature_visual_container {
    margin-bottom: 21px;
}

.feature_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-grey);
}

.feature_card_title {
    color: var(--deep-violet);
    margin-bottom: 13px;
}

.feature_description {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Authentic Selling Section */
.authentic_selling_area {
    padding: 89px 0;
    background: var(--accent-cream);
}

.content_split_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.section_headline {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: var(--deep-violet);
}

.content_paragraph {
    font-size: 17px;
    margin-bottom: 21px;
    color: var(--text-medium);
    line-height: 1.7;
}

.benefit_points_list {
    list-style: none;
    padding-left: 0;
}

.benefit_item {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--text-medium);
}

.benefit_item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 18px;
}

.section_featured_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 10px 35px var(--shadow-grey);
}

/* CTA Section */
.consultation_cta_block {
    background: var(--primary-purple);
    color: white;
    padding: 89px 0;
    text-align: center;
}

.cta_content_center {
    max-width: 800px;
    margin: 0 auto;
}

.cta_main_headline {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: white;
}

.cta_supporting_text {
    font-size: 18px;
    margin-bottom: 34px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta_button_group {
    margin-bottom: 21px;
}

.large_button {
    padding: 21px 55px;
    font-size: 19px;
    background: white;
    color: var(--primary-purple);
}

.large_button:hover {
    background: var(--light-lavender);
    color: var(--deep-violet);
}

.cta_note_text {
    font-size: 15px;
    opacity: 0.8;
    margin-top: 13px;
}

/* Services Section */
.services_overview_area {
    padding: 89px 0;
    background: white;
}

.section_center_title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 55px;
    color: var(--deep-violet);
}

.services_grid_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.service_preview_card {
    background: var(--light-lavender);
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 25px var(--shadow-grey);
    text-align: center;
    transition: all 0.25s ease;
}

.service_preview_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-grey);
}

.service_card_header {
    color: var(--deep-violet);
    margin-bottom: 13px;
}

.service_description {
    color: var(--text-medium);
}

/* Contact Section */
.contact_form_section {
    padding: 89px 0;
    background: var(--accent-cream);
}

.contact_layout_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.contact_section_title {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: var(--deep-violet);
}

.contact_intro_text {
    font-size: 17px;
    margin-bottom: 34px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact_details_list {
    space-y: 13px;
}

.contact_detail_item {
    margin-bottom: 13px;
    color: var(--text-medium);
    font-size: 16px;
}

.contact_submission_form {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 10px 35px var(--shadow-grey);
}

.form_field_group {
    margin-bottom: 21px;
}

.field_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form_input_field,
.form_select_field,
.form_textarea_field {
    width: 100%;
    padding: 13px;
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.25s ease;
}

.form_input_field:focus,
.form_select_field:focus,
.form_textarea_field:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(57, 0, 153, 0.1);
}

.form_submit_button {
    background: var(--primary-purple);
    color: white;
    padding: 16px 34px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 5px 20px var(--shadow-grey);
}

.form_submit_button:hover {
    background: var(--deep-violet);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-grey);
}

/* Footer */
.site_footer_area {
    background: var(--deep-violet);
    color: white;
    padding: 55px 0 21px;
}

.footer_content_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
    margin-bottom: 34px;
}

.footer_company_name {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer_tagline {
    opacity: 0.8;
    font-size: 15px;
}

.footer_section_header {
    color: white;
    margin-bottom: 13px;
    font-size: 1.1rem;
}

.footer_links_list {
    list-style: none;
}

.footer_link_item {
    margin-bottom: 8px;
}

.footer_navigation_link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s ease;
}

.footer_navigation_link:hover {
    color: white;
    text-decoration: underline;
}

.footer_bottom_section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 21px;
    text-align: center;
}

.copyright_notice {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media screen and (max-width: 1600px) {
    .content_wrapper {
        max-width: 1200px;
        padding: 0 18px;
    }
}

@media screen and (max-width: 1280px) {
    .hero_content_grid,
    .content_split_layout,
    .contact_layout_grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .primary_headline {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 890px) {
    .hero_showcase {
        padding: 55px 0;
    }

    .silent_strength_block,
    .authentic_selling_area,
    .consultation_cta_block,
    .services_overview_area,
    .contact_form_section {
        padding: 55px 0;
    }

    .primary_headline {
        font-size: 2.3rem;
    }

    .section_main_title,
    .cta_main_headline {
        font-size: 2.2rem;
    }

    .hero_action_zone {
        flex-direction: column;
        align-items: stretch;
    }

    .features_display_grid,
    .services_grid_layout {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .content_wrapper {
        padding: 0 13px;
    }

    .primary_headline {
        font-size: 2rem;
    }

    .section_main_title {
        font-size: 1.8rem;
    }

    .feature_showcase_card,
    .service_preview_card,
    .contact_submission_form {
        padding: 21px;
    }
}

/* About Page Specific Styles */
.about_hero_banner {
    background: linear-gradient(125deg, var(--primary-purple) 0%, var(--deep-violet) 100%);
    color: white;
    padding: 89px 0 55px;
    text-align: center;
}

.about_header_content {
    max-width: 800px;
    margin: 0 auto;
}

.about_main_headline {
    font-size: 3rem;
    margin-bottom: 21px;
    color: white;
}

.about_intro_description {
    font-size: 19px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Introvert Advantage Section */
.introvert_advantage_zone {
    padding: 89px 0;
    background: var(--accent-cream);
}

.advantage_content_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.advantage_section_title {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: var(--deep-violet);
}

.advantage_explanation {
    font-size: 17px;
    margin-bottom: 21px;
    color: var(--text-medium);
    line-height: 1.7;
}

.advantage_detail {
    font-size: 16px;
    margin-bottom: 34px;
    color: var(--text-medium);
    line-height: 1.6;
}

.advantage_stats_container {
    display: flex;
    gap: 34px;
    margin-top: 34px;
}

.stat_display_item {
    text-align: center;
    padding: 21px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 8px 25px var(--shadow-grey);
    flex: 1;
}

.stat_number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.stat_description {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
}

.advantage_featured_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 15px 45px var(--shadow-grey);
    transform: rotate(1.5deg);
    transition: all 0.3s ease;
}

.advantage_featured_image:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Quiet Revolution Section */
.quiet_revolution_block {
    padding: 89px 0;
    background: white;
}

.revolution_header_zone {
    text-align: center;
    margin-bottom: 55px;
}

.revolution_main_title {
    font-size: 2.8rem;
    margin-bottom: 13px;
    color: var(--deep-violet);
}

.revolution_subtitle {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 640px;
    margin: 0 auto;
}

.revolution_content_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.revolution_story_card {
    background: var(--light-lavender);
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 30px var(--shadow-grey);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.revolution_story_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px var(--shadow-grey);
}

.story_visual_wrapper {
    margin-bottom: 21px;
    overflow: hidden;
    border-radius: 8px;
}

.story_card_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.story_card_image:hover {
    transform: scale(1.05);
}

.story_card_header {
    color: var(--deep-violet);
    margin-bottom: 13px;
    font-size: 1.3rem;
}

.story_card_text {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 15px;
}

/* Inner Strength Section */
.inner_strength_area {
    padding: 89px 0;
    background: var(--accent-cream);
}

.strength_content_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.strength_main_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 12px 40px var(--shadow-grey);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.strength_main_image:hover {
    transform: rotate(0deg) scale(1.02);
}

.strength_section_headline {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: var(--deep-violet);
}

.strength_primary_text {
    font-size: 17px;
    margin-bottom: 34px;
    color: var(--text-medium);
    line-height: 1.7;
}

.strength_principles_list {
    space-y: 21px;
}

.principle_item_block {
    margin-bottom: 21px;
    padding: 21px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-grey);
    border-left: 4px solid var(--primary-purple);
}

.principle_item_title {
    color: var(--deep-violet);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.principle_description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.5;
}

/* Mission Statement Section */
.mission_statement_block {
    padding: 89px 0;
    background: white;
}

.mission_content_center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission_headline {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: var(--deep-violet);
}

.mission_statement_text {
    font-size: 18px;
    margin-bottom: 55px;
    color: var(--text-medium);
    line-height: 1.7;
}

.mission_values_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
}

.value_showcase_item {
    background: var(--light-lavender);
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 25px var(--shadow-grey);
    transition: all 0.25s ease;
}

.value_showcase_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-grey);
}

.value_item_header {
    color: var(--deep-violet);
    margin-bottom: 13px;
    font-size: 1.2rem;
}

.value_description {
    color: var(--text-medium);
    font-size: 15px;
}

/* Thank You Page Specific Styles */
.thankyou_hero_area {
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--accent-cream) 100%);
    padding: 89px 0;
    text-align: center;
}

.thankyou_content_center {
    max-width: 700px;
    margin: 0 auto;
}

.success_indicator_zone {
    margin-bottom: 34px;
}

.checkmark_visual_element {
    display: inline-block;
    width: 89px;
    height: 89px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    font-size: 3rem;
    font-weight: bold;
    line-height: 89px;
    text-align: center;
    box-shadow: 0 10px 35px var(--shadow-grey);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thankyou_main_headline {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: var(--deep-violet);
}

.thankyou_confirmation_text {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Next Steps Section */
.next_steps_guidance_block {
    padding: 89px 0;
    background: white;
}

.steps_layout_structure {
    max-width: 1000px;
    margin: 0 auto;
}

.steps_section_title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 55px;
    color: var(--deep-violet);
}

.process_timeline_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.timeline_step_card {
    background: var(--light-lavender);
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 25px var(--shadow-grey);
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
}

.timeline_step_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-grey);
}

.step_number_indicator {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    line-height: 42px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-grey);
}

.step_card_header {
    color: var(--deep-violet);
    margin-bottom: 13px;
    margin-top: 13px;
    font-size: 1.3rem;
}

.step_description {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 15px;
}

/* Important Information Section */
.important_info_area {
    padding: 89px 0;
    background: var(--accent-cream);
}

.info_content_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.info_section_headline {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: var(--deep-violet);
}

.info_points_container {
    space-y: 21px;
}

.info_detail_item {
    margin-bottom: 21px;
    padding: 21px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow-grey);
}

.info_item_title {
    color: var(--deep-violet);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info_item_description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.5;
}

.info_featured_image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 12px 40px var(--shadow-grey);
}

/* Return Navigation Section */
.return_navigation_block {
    padding: 89px 0;
    background: var(--primary-purple);
    color: white;
    text-align: center;
}

.return_content_center {
    max-width: 700px;
    margin: 0 auto;
}

.return_section_title {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: white;
}

.return_description {
    font-size: 17px;
    margin-bottom: 34px;
    opacity: 0.9;
    line-height: 1.6;
}

.return_button_group {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary_return_button {
    background: white;
    color: var(--primary-purple);
    padding: 16px 34px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.primary_return_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    background: var(--light-lavender);
}

.secondary_return_button {
    border: 2px solid white;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    background: transparent;
    transition: all 0.25s ease;
}

.secondary_return_button:hover {
    background: white;
    color: var(--primary-purple);
    transform: translateY(-2px);
}

/* Responsive Design for New Pages */
@media screen and (max-width: 1280px) {
    .advantage_content_layout,
    .strength_content_layout,
    .info_content_layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about_main_headline {
        font-size: 2.5rem;
    }

    .advantage_stats_container {
        flex-direction: column;
        gap: 21px;
    }
}

@media screen and (max-width: 890px) {
    .about_hero_banner,
    .introvert_advantage_zone,
    .quiet_revolution_block,
    .inner_strength_area,
    .mission_statement_block,
    .thankyou_hero_area,
    .next_steps_guidance_block,
    .important_info_area,
    .return_navigation_block {
        padding: 55px 0;
    }

    .about_main_headline,
    .thankyou_main_headline {
        font-size: 2.2rem;
    }

    .revolution_main_title,
    .mission_headline {
        font-size: 2.2rem;
    }

    .return_button_group {
        flex-direction: column;
        align-items: stretch;
    }
}

@media screen and (max-width: 640px) {
    .about_main_headline,
    .thankyou_main_headline {
        font-size: 2rem;
    }

    .revolution_content_grid,
    .process_timeline_grid,
    .mission_values_grid {
        grid-template-columns: 1fr;
    }

    .revolution_story_card,
    .timeline_step_card,
    .value_showcase_item,
    .principle_item_block,
    .info_detail_item {
        padding: 21px;
    }

    .checkmark_visual_element {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2.5rem;
    }
}