/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fdc543;
    --secondary-color: #449dd7;
    --accent-color: #f39db1;
    --dark-color: #51371d;
    --light-bg: #fff5e6;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

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

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #3788bf;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover {
    background: #e88a9f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Главный экран */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    overflow: hidden;
    background: #d4b896;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(218, 184, 146, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(195, 165, 130, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(210, 180, 145, 0.2) 0%, transparent 40%);
}

.hero-bg-left,
.hero-bg-right {
    position: absolute;
    top: 0;
    width: 35%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-left {
    left: 0;
}

.hero-bg-right {
    right: 0;
}

.hero-bg-left::after,
.hero-bg-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
    z-index: 1;
}

.hero-bg-left img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: 15% center;
    position: absolute;
    left: 0;
}

.hero-bg-right img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: 85% center;
    position: absolute;
    right: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features-unified {
    background: var(--light-bg);
    padding: 30px 40px;
    border-radius: 25px;
    margin-bottom: 35px;
    border: 3px solid var(--secondary-color);
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    padding: 10px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.feature-icon {
    font-size: 42px;
    flex-shrink: 0;
}

.hero-note {
    margin-top: 20px;
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-note-big {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Секции */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray);
}

/* О студии */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
}

/* Программы */
.program-unified {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.program-unified-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 50px 40px;
    text-align: center;
}

.program-icons-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.program-icon-large {
    font-size: 60px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.program-icon-large:nth-child(2) {
    animation-delay: 0.2s;
}

.program-icon-large:nth-child(3) {
    animation-delay: 0.4s;
}

.program-unified-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.program-unified-subtitle {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.program-unified-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 50px 40px;
    background: var(--light-bg);
}

.program-direction {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.program-direction:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.direction-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.direction-icon {
    font-size: 40px;
}

.direction-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.direction-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.direction-features li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--dark-color);
    font-size: 16px;
}

.direction-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.program-unified-result {
    background: linear-gradient(135deg, var(--primary-color), #fdd870);
    padding: 40px;
    text-align: center;
}

.program-unified-result h4 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.program-unified-result p {
    font-size: 18px;
    color: var(--dark-color);
    line-height: 1.7;
    margin: 0;
}

/* Преимущества */
.benefits {
    background: var(--light-bg);
}

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

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* Цены */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.price-card-popular {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.price-card-featured {
    border: 4px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(243, 157, 177, 0.05), rgba(68, 157, 215, 0.05));
    box-shadow: 0 8px 30px rgba(243, 157, 177, 0.3);
}

.price-card-featured:hover {
    box-shadow: 0 12px 40px rgba(243, 157, 177, 0.4);
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.price-badge-special {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b9d);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(243, 157, 177, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
    }
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
}

.price-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-old {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
}

.price-current {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-per {
    font-size: 16px;
    color: var(--gray);
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
}

.price-features li strong {
    color: var(--dark-color);
    font-weight: 700;
}

.price-card-featured .price-features li {
    padding: 8px 0;
}

.price-card .btn {
    width: 100%;
}

/* Отзывы */
.reviews {
    background: var(--light-bg);
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.review-stars {
    font-size: 14px;
    color: var(--primary-color);
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

/* Форма записи */
.signup {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.signup-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.signup-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.signup-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    margin-top: 20px;
}

.form-consents {
    margin-bottom: 25px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    cursor: pointer;
    color: var(--dark-color);
    font-size: 14px;
    line-height: 1.5;
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.consent-checkbox a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.consent-checkbox a:hover {
    color: var(--dark-color);
}

.consent-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 260px;
    font-size: 15px;
    color: var(--dark-color);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.footer-requisites {
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
    font-size: 13px;
    line-height: 1.6;
}

.footer-requisites a {
    color: var(--white);
    text-decoration: none;
}

.footer-requisites a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 120px 0 80px;
    background: var(--light-bg);
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.legal-updated {
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-section {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.legal-section p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-section a {
    color: var(--secondary-color);
}

.legal-list {
    margin: 12px 0 12px 24px;
    line-height: 1.8;
}

.legal-back {
    margin-top: 40px;
    text-align: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.signup-success {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.signup-success h3 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.signup-success p {
    font-size: 18px;
    color: var(--gray);
}

.signup-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.signup-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.8;
    font-size: 14px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Подвал */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

.footer-documents {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-documents a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.footer-documents a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-documents span {
    opacity: 0.5;
}

/* Адаптивность */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .about-content,
    .signup-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero-bg-left,
    .hero-bg-right {
        width: 20%;
    }

    .hero-content {
        padding: 40px 30px;
        max-width: 500px;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-features-unified {
        padding: 25px 20px;
    }

    .features-list {
        gap: 5px;
    }

    .features-list li {
        font-size: 19px;
        gap: 12px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .hero-note-big {
        font-size: 26px;
    }

    .program-unified-header {
        padding: 40px 30px;
    }

    .program-unified-title {
        font-size: 28px;
    }

    .program-unified-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 25px;
    }

    .program-unified-result {
        padding: 30px 25px;
    }

    .benefits-grid,
    .reviews-grid,
    .prices-grid {
        grid-template-columns: 1fr;
    }

    .price-card-popular,
    .price-card-featured {
        transform: scale(1);
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-bg-left,
    .hero-bg-right {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .features-list li {
        font-size: 17px;
        gap: 10px;
    }

    .feature-icon {
        font-size: 32px;
    }

    .hero-note-big {
        font-size: 22px;
    }

    .program-unified-header {
        padding: 30px 20px;
    }

    .program-icons-row {
        gap: 15px;
    }

    .program-icon-large {
        font-size: 45px;
    }

    .program-unified-title {
        font-size: 24px;
    }

    .program-unified-subtitle {
        font-size: 16px;
    }

    .program-unified-content {
        padding: 30px 20px;
    }

    .program-unified-result {
        padding: 25px 20px;
    }

    .program-unified-result h4 {
        font-size: 22px;
    }

    .program-unified-result p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .signup-form {
        padding: 30px 20px;
    }

    .footer-documents {
        flex-direction: column;
        gap: 8px;
    }

    .footer-documents span {
        display: none;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }
}
