/* CSS Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS переменные для цветов */
:root {
    --ocean-deep: #00b4d8;
    --sky-light: #e6f7fc;
    --midnight-blue: #007a92;
    --forest-emerald: #10b981;
    --moss-light: #d1fae5;
    --sunset-amber: #f59e0b;
    --cream-light: #fef3c7;
    --coral-vibrant: #ef4444;
    --rose-whisper: #fce7e7;
    --slate-neutral: #6b7280;
    --pearl-soft: #f8fafc;
    --sage-info: #0ea5e9;
    --ruby-warn: #dc2626;
    --jade-success: #059669;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background-main: #ffffff;
    --background-alt: #f9fafb;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=PT+Sans:wght@400;700&display=swap');

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-main);
    font-size: 16px
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 21px;
    color: var(--midnight-blue);
}

h1 { font-size: 3.052rem; }
h2 { font-size: 2.441rem; }
h3 { font-size: 1.953rem; }
h4 { font-size: 1.563rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 17px;
    color: var(--text-secondary);
}

/* Layout Container */
.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Navigation */
.main_menu {
    background: var(--background-main);
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brand-logo {
    height: 42px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 32px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 27px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 34px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--ocean-deep);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -7px;
    left: 0;
    background-color: var(--ocean-deep);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-main);
        transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 27px;
        font-size: 19px;
        color: var(--text-primary);
    }

    .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;
    }
}

@media screen and (min-width: 891px) {
    .nav-wrapper {
        display: flex;
    }

    .navbar-nav {
        display: flex;
        gap: 34px;
    }
}

/* Hero Section */
.hero-zone {
    padding: 89px 0 76px;
    background: linear-gradient(135deg, var(--sky-light) 0%, var(--background-main) 100%);
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 27px;
    color: var(--midnight-blue);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 34px;
    color: var(--text-secondary);
}

.hero-action-group {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary-button {
    background: var(--ocean-deep);
    color: white;
    padding: 17px 34px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--ocean-deep);
}

.primary-button:hover {
    background: var(--midnight-blue);
    border-color: var(--midnight-blue);
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: var(--midnight-blue);
    padding: 17px 34px;
    text-decoration: none;
    border: 2px solid var(--midnight-blue);
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.secondary-button:hover {
    background: var(--midnight-blue);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Services Section */
.services-showcase {
    padding: 89px 0;
    background: var(--background-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 63px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 21px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
}

.service-card {
    background: var(--background-main);
    padding: 42px 34px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 27px;
    background: var(--sky-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-img {
    width: 42px;
    height: 42px;
    filter: none;
}

.service-title {
    margin-bottom: 17px;
    color: var(--midnight-blue);
}

.service-description {
    color: var(--text-secondary);
}

/* About Section */
.about-overview {
    padding: 89px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.about-title {
    margin-bottom: 27px;
}

.about-description {
    margin-bottom: 34px;
    font-size: 1.1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    filter: none;
}

.feature-text {
    font-weight: 500;
    color: var(--text-primary);
}

/* CTA Section */
.cta-zone {
    padding: 89px 0;
    background: var(--midnight-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    color: white;
    margin-bottom: 21px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: var(--ocean-deep);
    color: white;
    padding: 19px 42px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.cta-button:hover {
    background: white;
    color: var(--midnight-blue);
    transform: translateY(-3px);
}

.cta-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
.process-guide {
    padding: 89px 0;
    background: var(--background-alt);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 42px;
}

.process-step {
    background: var(--background-main);
    padding: 42px 27px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 63px;
    height: 63px;
    background: var(--ocean-deep);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 27px;
}

.step-title {
    margin-bottom: 13px;
    color: var(--midnight-blue);
}

.step-description {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-area {
    padding: 89px 0;
    background: var(--background-main);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
}

.contact-title {
    margin-bottom: 21px;
}

.contact-description {
    margin-bottom: 42px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.contact-icon {
    width: 34px;
    height: 34px;
    filter: none;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 7px;
    font-weight: 600;
    color: var(--midnight-blue);
}

.contact-text p {
    margin: 0;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    background: var(--background-alt);
    padding: 42px;
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 27px;
}

.form-label {
    display: block;
    margin-bottom: 9px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 17px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--background-main);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ocean-deep);
}

.form-textarea {
    resize: vertical;
    min-height: 127px;
}

.form-submit {
    background: var(--ocean-deep);
    color: white;
    padding: 17px 42px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.form-submit:hover {
    background: var(--midnight-blue);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: var(--text-primary);
    color: white;
    padding: 63px 0 27px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 63px;
    margin-bottom: 42px;
}

.footer-logo {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 21px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.footer-heading {
    color: white;
    margin-bottom: 21px;
    font-size: 1.1rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 13px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--ocean-deep);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 27px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .content-container {
        padding: 0 34px;
    }
}

@media screen and (max-width: 890px) {
    .hero-content-grid,
    .about-content-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 27px;
    }
}

@media screen and (max-width: 640px) {
    .content-container {
        padding: 0 21px;
    }

    .hero-zone {
        padding: 63px 0 55px;
    }

    .services-showcase,
    .about-overview,
    .process-guide,
    .contact-area {
        padding: 63px 0;
    }

    .cta-zone {
        padding: 63px 0;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-action-group {
        flex-direction: column;
        gap: 17px;
    }

    .primary-button,
    .secondary-button {
        text-align: center;
        width: 100%;
    }

    .contact-form {
        padding: 27px;
    }

    .service-card,
    .process-step {
        padding: 27px 21px;
    }

    .cta-image {
        display: none;
    }
}

/* About Page Styles */
.about-hero-zone {
    padding: 127px 0 76px;
    background: linear-gradient(135deg, var(--sky-light) 0%, var(--background-main) 100%);
    text-align: center;
}

.about-hero-title {
    font-size: 3.2rem;
    margin-bottom: 27px;
    color: var(--midnight-blue);
}

.about-hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

/* Mission Section */
.mission-area {
    padding: 89px 0;
}

.mission-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.mission-title {
    margin-bottom: 27px;
    font-size: 2.3rem;
}

.mission-description {
    font-size: 1.1rem;
    margin-bottom: 21px;
}

.mission-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.mission-image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Values Section */
.values-showcase {
    padding: 89px 0;
    background: var(--background-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 42px;
}

.value-card {
    background: var(--background-main);
    padding: 42px 34px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 27px;
    background: var(--sky-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon-img {
    width: 42px;
    height: 42px;
    filter: none;
}

.value-title {
    margin-bottom: 17px;
    color: var(--midnight-blue);
}

/* Experience Section */
.experience-area {
    padding: 89px 0;
}

.experience-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.experience-image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.experience-title {
    margin-bottom: 27px;
}

.experience-description {
    margin-bottom: 42px;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 9px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Process Detail Section */
.process-detail-area {
    padding: 89px 0;
    background: var(--background-alt);
}

.process-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 76px;
}

.process-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.process-detail-item.reverse {
    direction: rtl;
}

.process-detail-item.reverse > * {
    direction: ltr;
}

.process-img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.process-detail-title {
    margin-bottom: 21px;
    color: var(--midnight-blue);
}

.process-detail-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* Why Choose Section */
.why-choose-area {
    padding: 89px 0;
}

.why-choose-title {
    text-align: center;
    margin-bottom: 21px;
}

.why-choose-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 55px;
    color: var(--text-secondary);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
    max-width: 890px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 21px;
    padding: 27px;
    background: var(--sky-light);
    border-radius: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(7px);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    filter: none;
}

.benefit-title {
    margin-bottom: 9px;
    color: var(--midnight-blue);
    font-size: 1.2rem;
}

.benefit-text {
    color: var(--text-secondary);
    margin: 0;
}

/* Thank You Page Styles */
.thankyou-hero-zone {
    padding: 127px 0 89px;
    background: linear-gradient(135deg, var(--moss-light) 0%, var(--background-main) 100%);
    text-align: center;
}

.thankyou-content {
    max-width: 680px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 89px;
    height: 89px;
    margin: 0 auto 34px;
    background: var(--forest-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon {
    width: 42px;
    height: 42px;
    filter: brightness(0) invert(1);
}

.thankyou-title {
    font-size: 2.8rem;
    margin-bottom: 27px;
    color: var(--forest-emerald);
}

.thankyou-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Next Steps Section */
.next-steps-area {
    padding: 89px 0;
    background: var(--background-alt);
}

.next-steps-title {
    text-align: center;
    margin-bottom: 63px;
}

.steps-timeline {
    max-width: 720px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 27px;
    margin-bottom: 42px;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 55px;
    width: 2px;
    height: 42px;
    background: #e5e7eb;
}

.step-indicator {
    flex-shrink: 0;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e5e7eb;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-circle.active {
    background: var(--forest-emerald);
    color: white;
}

.step-heading {
    margin-bottom: 9px;
    color: var(--midnight-blue);
}

.step-text {
    color: var(--text-secondary);
    margin: 0;
}

/* Information Preparation Section */
.info-preparation-area {
    padding: 89px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.info-title {
    margin-bottom: 21px;
}

.info-description {
    margin-bottom: 34px;
    font-size: 1.1rem;
}

.preparation-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.prep-item {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 17px;
    background: var(--sky-light);
    border-radius: 0;
    transition: all 0.3s ease;
}

.prep-item:hover {
    transform: translateX(5px);
}

.prep-icon {
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    filter: none;
}

.prep-text {
    font-weight: 500;
    color: var(--text-primary);
}

.preparation-image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Contact Reminder Section */
.contact-reminder-area {
    padding: 89px 0;
    background: var(--background-alt);
}

.contact-reminder-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.contact-reminder-title {
    margin-bottom: 21px;
}

.contact-reminder-description {
    margin-bottom: 42px;
    font-size: 1.1rem;
}

.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
    margin-bottom: 42px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 17px;
    text-align: left;
}

.quick-contact-icon {
    width: 34px;
    height: 34px;
    filter: none;
    flex-shrink: 0;
}

.quick-contact-text h4 {
    margin-bottom: 7px;
    font-weight: 600;
    color: var(--midnight-blue);
}

.quick-contact-text p {
    margin: 0;
    color: var(--text-secondary);
}

.action-buttons {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for About and Thank You Pages */
@media screen and (max-width: 890px) {
    .mission-content-grid,
    .experience-content-grid,
    .process-detail-item,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .process-detail-item.reverse {
        direction: ltr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .contact-quick-info {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 17px;
    }
}

@media screen and (max-width: 640px) {
    .about-hero-zone,
    .thankyou-hero-zone {
        padding: 89px 0 63px;
    }

    .about-hero-title,
    .thankyou-title {
        font-size: 2.3rem;
    }

    .mission-area,
    .values-showcase,
    .experience-area,
    .process-detail-area,
    .why-choose-area,
    .next-steps-area,
    .info-preparation-area,
    .contact-reminder-area {
        padding: 63px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 21px;
    }

    .thankyou-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 27px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
}