/* ====== VARIABLES CSS ====== */
:root {
    --primary-color: #014A4A;      /* Тёмный изумруд */
    --accent-coral: #FF6D70;       /* Неоновый коралл */
    --accent-turquoise: #A7FFF6;   /* Светло-бирюзовый */
    --text-white: #FFFFFF;         /* Белый */
    --text-gray: #C7DAE0;          /* Серо-синий */
    --accent-yellow: #FFE875;      /* Яркий жёлтый */
    --dark-bg: #022A2A;            /* Тёмный фон */
    --light-bg: #F8FDFD;           /* Светлый фон */
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(1, 74, 74, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-white);
    background: var(--primary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    color: var(--accent-turquoise);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-coral);
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-turquoise));
    color: var(--text-white);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 109, 112, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-turquoise);
    border: 2px solid var(--accent-turquoise);
}

.btn-secondary:hover {
    background: var(--accent-turquoise);
    color: var(--primary-color);
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(1, 74, 74, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-coral);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition);
}

/* ====== HERO SECTION ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 74, 74, 0.8), rgba(255, 109, 112, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(1, 74, 74, 0.3);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(167, 255, 246, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-turquoise), var(--accent-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ====== SECTIONS ====== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-turquoise));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== ABOUT SECTION ====== */
.about {
    padding: 100px 0;
    background: var(--light-bg);
    color: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    color: var(--primary-color);
}

.about p {
    color: var(--primary-color);
    opacity: 0.8;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(1, 74, 74, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary-color) !important;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--primary-color) !important;
    opacity: 0.8;
}

/* ====== SERVICES SECTION ====== */
.services {
    padding: 100px 0;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(167, 255, 246, 0.2);
    backdrop-filter: blur(20px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 109, 112, 0.3);
    border-color: var(--accent-coral);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-coral);
    margin-top: 1rem;
}

/* ====== ADVANTAGES SECTION ====== */
.advantages {
    padding: 100px 0;
    background: var(--light-bg);
    color: var(--primary-color);
}

.advantages h2 {
    color: var(--primary-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(1, 74, 74, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: var(--primary-color);
}

.advantage-item p {
    color: var(--primary-color);
    opacity: 0.7;
}

/* ====== PROCESS SECTION ====== */
.process {
    padding: 100px 0;
    background: var(--primary-color);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 255, 246, 0.2);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-coral);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-turquoise));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials {
    padding: 100px 0;
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(167, 255, 246, 0.2);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-coral);
}

.testimonial-rating {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    border-top: 1px solid rgba(167, 255, 246, 0.2);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--accent-turquoise);
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ====== CONTACT FORM SECTION ====== */
.contact-form {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-form h2 {
    color: var(--primary-color);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--primary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-coral);
    box-shadow: 0 0 0 3px rgba(255, 109, 112, 0.1);
}

.form-checkboxes {
    margin: 2rem 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-turquoise));
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 109, 112, 0.3);
}

/* ====== CONTACT INFO SECTION ====== */
.contact-info {
    padding: 100px 0;
    background: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 255, 246, 0.2);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-coral);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--accent-turquoise);
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--text-white);
    font-weight: 600;
}

.contact-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--dark-bg);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-turquoise);
    margin-bottom: 1rem;
}

/* Убираем фон для контактной секции в footer */
.footer-section:nth-child(2) {
    background: none !important;
}

.footer-section .contact-info {
    background: none !important;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-coral);
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-coral);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-turquoise));
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ====== COOKIE POPUP ====== */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border-top: 3px solid var(--accent-coral);
    padding: 1.5rem;
    z-index: 10000;
    transition: var(--transition);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content h3 {
    color: var(--accent-turquoise);
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept {
    background: var(--accent-coral);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-decline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept:hover,
.btn-decline:hover {
    transform: translateY(-2px);
}

/* ====== THANK YOU PAGE ====== */
.thank-you-section {
    padding: 120px 0;
    background: var(--light-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-icon {
    animation: successPulse 2s ease-in-out infinite;
}

.success-circle {
    animation: scaleIn 0.8s ease-out;
}

.success-check {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck 1s ease-out 0.5s forwards;
}

.thank-you-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.next-steps {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.steps-list {
    list-style: none;
    text-align: left;
}

.steps-list li {
    padding: 0.5rem 0;
    color: var(--primary-color);
}

.contact-reminder {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(1, 74, 74, 0.1);
    border-radius: var(--border-radius);
}

.contact-reminder h3 {
    color: var(--primary-color);
}

.contact-reminder p {
    color: var(--primary-color);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Team Section */
.team-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--primary-color);
    border-radius: var(--border-radius);
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.team-gradient-bar {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-turquoise));
    margin: 0 auto 1rem;
    border-radius: 2px;
    animation: gradientShift 3s ease-in-out infinite;
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-header h2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.team-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 255, 246, 0.2);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent-coral);
}

.member-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: var(--accent-turquoise);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(167, 255, 246, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 109, 112, 0.5);
    }
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .mobile-menu-toggle:checked ~ .nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding-top: 100px; /* Отступ сверху для мобильной версии */
        min-height: calc(100vh - 100px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px; /* Увеличенный отступ для очень маленьких экранов */
        min-height: calc(100vh - 120px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .advantage-item,
    .process-step,
    .testimonial-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .thank-you-content {
        padding: 1.5rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
} 