:root {
    --primary-color: #588157;
    --light-shade: #eef3ef;
    --dark-shade: #3e5a3d;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-shade);
    background-color: var(--light-shade);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--dark-shade);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn_primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn_primary:hover {
    background-color: var(--dark-shade);
    color: var(--white);
    transform: translateY(-3px);
}

.btn_secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn_secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn_text {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn_text:hover {
    color: var(--dark-shade);
}

.section_heading {
    text-align: center;
    margin-bottom: 50px;
}

.section_heading h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section_heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section_heading p {
    max-width: 600px;
    margin: 10px auto 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 50px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    position: relative;
    transition: var(--transition);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    transition: var(--transition);
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--dark-shade);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.main_menu {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hero_section {
    padding: 100px 0;
    position: relative;
    background-color: var(--light-shade);
    overflow: hidden;
}

.hero_section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(88, 129, 87, 0.1);
    z-index: 0;
}

.hero_section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(88, 129, 87, 0.1);
    z-index: 0;
}

.hero_content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero_text {
    flex: 1;
}

.hero_image {
    flex: 1;
}

.image_wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image_wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.financial_path {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.path_map {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.path_map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.path_step {
    display: flex;
    gap: 30px;
    position: relative;
}

.step_number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.step_content {
    flex: 1;
    padding: 20px;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.step_content:hover {
    transform: translateX(10px);
}

.financial_archetypes {
    padding: 100px 0;
    background-color: var(--light-shade);
    position: relative;
}

.archetypes_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.archetype_card {
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.archetype_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.archetype_action {
    margin-top: auto;
    padding-top: 20px;
    font-style: italic;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.test_cta {
    text-align: center;
    margin-top: 50px;
}

.success_stories {
    padding: 100px 0;
    background-color: var(--white);
}

.stories_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story_card {
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.story_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story_image {
    height: 200px;
    overflow: hidden;
}

.story_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story_card:hover .story_image img {
    transform: scale(1.1);
}

.story_content {
    padding: 20px;
}

.mastermind_calendar {
    padding: 100px 0;
    background-color: var(--light-shade);
}

.calendar_wrapper {
    max-width: 800px;
    margin: 0 auto 50px;
}

.calendar_event {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.calendar_event:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event_date {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
}

.event_month {
    font-size: 12px;
    text-transform: uppercase;
}

.event_day {
    font-size: 24px;
    font-weight: 700;
}

.event_details {
    flex: 1;
}

.calendar_cta {
    text-align: center;
}

.financial_library {
    padding: 100px 0;
    background-color: var(--white);
}

.library_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.library_category {
    padding: 30px;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource_list {
    list-style: none;
    margin-top: 15px;
}

.resource_list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.resource_list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.library_cta {
    text-align: center;
}

.cta_section {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta_section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta_section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta_content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta_content h2 {
    color: var(--white);
}

.cta_content p {
    color: var(--white);
    margin-bottom: 30px;
}

.cta_content .btn_primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta_content .btn_primary:hover {
    background-color: var(--dark-shade);
    color: var(--white);
}

.contact_section {
    padding: 100px 0;
    background-color: var(--light-shade);
}

.contact_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info_item {
    margin-bottom: 20px;
}

.contact_image {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact_form_wrapper {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form_group label {
    font-weight: 600;
    font-size: 14px;
}

.form_group input,
.form_group select,
.form_group textarea {
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    resize: none;
    transition: var(--transition);
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.2);
}

.main_footer {
    background-color: var(--dark-shade);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 30px;
}

.footer_logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer_nav h3,
.footer_contact h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer_nav h3::after,
.footer_contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer_nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_nav a {
    color: var(--white);
}

.footer_nav a:hover {
    color: var(--primary-color);
}

.footer_bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.cookie_consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 999;
}

.cookie_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie_buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        transition: var(--transition);
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .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_content,
    .contact_container {
        grid-template-columns: 1fr;
    }

    .hero_content {
        flex-direction: column;
    }

    .hero_text {
        order: 1;
        text-align: center;
    }

    .hero_image {
        order: 0;
        margin-bottom: 30px;
    }

    .cookie_content {
        flex-direction: column;
        text-align: center;
    }

    .path_map::before {
        left: 30px;
    }

    .step_number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section_heading {
        margin-bottom: 30px;
    }

    .hero_section,
    .financial_path,
    .financial_archetypes,
    .success_stories,
    .mastermind_calendar,
    .financial_library,
    .cta_section,
    .contact_section {
        padding: 50px 0;
    }

    .path_map {
        gap: 20px;
    }

    .path_step {
        gap: 15px;
    }

    .step_number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .calendar_event {
        flex-direction: column;
        text-align: center;
    }

    .event_date {
        margin-bottom: 15px;
    }
}

/* Стили для about.html */

.page_banner {
    padding: 100px 0 50px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.page_banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.page_banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.banner_content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.founder_journey {
    padding: 100px 0;
    background-color: var(--light-shade);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline_item {
    position: relative;
    margin-bottom: 50px;
}

.timeline_item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline_item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.timeline_dot {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    z-index: 2;
}

.timeline_date {
    position: absolute;
    top: 5px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timeline_item:nth-child(odd) .timeline_date {
    right: 55%;
}

.timeline_item:nth-child(even) .timeline_date {
    left: 55%;
}

.timeline_content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90%;
}

.timeline_item:nth-child(odd) .timeline_content {
    margin-right: 30px;
}

.timeline_item:nth-child(even) .timeline_content {
    margin-left: 30px;
}

.timeline_content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission_vision {
    padding: 100px 0;
    background-color: var(--white);
}

.mission_vision_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission_card, .vision_card {
    padding: 30px;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission_card:hover, .vision_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission_goals {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.goal_item {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.goal_number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.vision_values {
    margin-top: 20px;
}

.value_item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.value_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.team_section {
    padding: 100px 0;
    background-color: var(--light-shade);
}

.team_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team_card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.team_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team_content {
    padding: 20px;
}

.team_role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team_specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.team_specialties span {
    background-color: var(--light-shade);
    color: var(--dark-shade);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.results_section {
    padding: 100px 0;
    background-color: var(--white);
}

.results_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.result_item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.result_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.result_number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.philosophy_section {
    padding: 100px 0;
    background-color: var(--light-shade);
}

.philosophy_container {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy_item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.philosophy_item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.philosophy_number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
    min-width: 60px;
}

.philosophy_content {
    flex: 1;
}

.charity_section {
    padding: 100px 0;
    background-color: var(--white);
}

.charity_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.charity_item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: var(--light-shade);
}

.charity_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.charity_content {
    padding: 20px;
}

.charity_stats {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}

.charity_stat {
    flex: 1;
    text-align: center;
}

.charity_stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.charity_stat p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Стили для thankyou.php */

.thankyou_section {
    padding: 100px 0;
    background-color: var(--light-shade);
}

.thankyou_content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thankyou_icon {
    margin-bottom: 30px;
}

.check_circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.check_mark {
    width: 30px;
    height: 15px;
    border-left: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(-45deg);
    margin-top: -5px;
}

.thankyou_content h1 {
    margin-bottom: 20px;
}

.thankyou_content > p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.thankyou_details, .thankyou_resources {
    text-align: left;
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.next_steps {
    list-style: none;
    margin-top: 20px;
}

.next_steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.step_number {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.resources_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.resource_item {
    padding: 20px;
    background-color: var(--light-shade);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.resource_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.thankyou_btn {
    margin-top: 20px;
}

/* Медиа-запросы для адаптивности */

@media screen and (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline_item:nth-child(odd),
    .timeline_item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .timeline_dot {
        left: 30px;
    }

    .timeline_item:nth-child(odd) .timeline_date,
    .timeline_item:nth-child(even) .timeline_date {
        left: 80px;
        right: auto;
    }

    .timeline_item:nth-child(odd) .timeline_content,
    .timeline_item:nth-child(even) .timeline_content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .charity_stats {
        flex-direction: column;
    }

    .philosophy_item {
        flex-direction: column;
        gap: 10px;
    }

    .philosophy_number {
        min-width: auto;
    }
}

@media screen and (max-width: 576px) {
    .results_container {
        grid-template-columns: 1fr;
    }

    .next_steps li {
        flex-direction: column;
    }

    .step_number {
        margin-bottom: 10px;
    }
}