* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6eef9 100%);
    color: #333;
    overflow-x: hidden;
}
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #f0f5fa, #e6eef9);
    color: #4a6b8a;
    padding-left: 25px;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 10px 0;
        padding: 10px 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle i {
        margin-left: auto;
    }
    
    .dropdown-item {
        padding-left: 40px;
    }
    
    .dropdown-item:hover {
        padding-left: 50px;
    }
}

/* Навбар (без изменений, но добавим тень) */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo{
    margin-top: 10px;
    height: 80px;
}
.nav-logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #4a6b8a, #6d8eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav-item {
    position: relative;
}


.nav-link {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a6b8a, #6d8eb0);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


/* Стили для переключателя языка */
.lang-switch {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: 1px solid #d0ddee;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #4a6b8a;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: linear-gradient(45deg, #4a6b8a, #6d8eb0);
    color: white;
    border-color: transparent;
}

.lang-btn:hover {
    background: #e6eef9;
}

/* HERO СЕКЦИЯ (Красивый баннер) */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    color: white;
    padding: 120px 20px 250px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
    background-size: 100px 100px; */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-primary {
    background: white;
    color: #4a6b8a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4a6b8a;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Секции общие */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
}
.section-become {
    font-size: 18px;
    color: #2667c5;
}
/* О нас с цифрами */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(45deg, #4a6b8a, #6d8eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: #7f8c8d;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Карточки программ */
.programs-section {
    background: rgba(255,255,255,0.5);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Слайдер (Галерея) */
.gallery-section {
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    color: white;
}

.gallery-section .section-header h2,
.gallery-section .section-subtitle {
    color: white;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 450px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.8);
    color: #4a6b8a;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

/* Новости */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-date {
    color: #4a6b8a;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.news-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-link {
    color: #4a6b8a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #6d8eb0;
}

/* CTA секция */
.cta-section {
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Контакты */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-form {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a6b8a;
    box-shadow: 0 0 0 3px rgba(74,107,138,0.1);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Футер */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-item {
        margin: 15px 0;
        text-align: center;
    }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #4a6b8a;
    margin: 3px 0;
    transition: 0.3s;
}

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}
/* Фиксированная кнопка пожертвования внизу по центру */
.donate-fixed-bottom {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: floatButton 3s ease-in-out infinite;
}

.btn-donate-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    /* background: linear-gradient(135deg, #ff6b6b, #ff4757); */
    background: linear-gradient(135deg, #667eea, #324fe1);
    color: white;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    /* box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4); */
        box-shadow: 0 10px 20px #7061c1;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-donate-bottom:hover {
    /* background: linear-gradient(135deg, #ff4757, #ff6b6b); */
    background: linear-gradient(135deg, #667eea, #324fe1);
    transform: translateY(-5px);
    /* box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6); */
        box-shadow: 0 10px 30px #7061c1;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-donate-bottom i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.btn-donate-bottom:hover i {
    transform: scale(1.2);
    animation: heartbeat 1s ease infinite;
}
/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ДЛЯ DONATE.PHP ===== */

/* Hero секция */
@media (max-width: 768px) {
    .collab-hero h1 {
        font-size: 36px !important;
    }
    
    .collab-hero .subtitle {
        font-size: 16px !important;
        padding: 0 15px;
    }
    
    .collab-wave {
        height: 60px !important;
    }
}

/* Основной контент */
@media (max-width: 768px) {
    .collab-wrapper {
        padding: 0 15px !important;
    }
    
    .thanks-card {
        padding: 30px 20px !important;
    }
    
    .thanks-card h2 {
        font-size: 24px !important;
    }
    
    .donate-text {
        font-size: 16px !important;
    }
    
    .partners-main-title h2 {
        font-size: 24px !important;
    }
}

/* Банковские реквизиты */
@media (max-width: 768px) {
    .donate-accounts-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .donate-card {
        padding: 30px 20px !important;
    }
    
    .donate-icon {
        font-size: 48px !important;
    }
    
    .donate-card h3 {
        font-size: 24px !important;
    }
    
    .account-number p {
        font-size: 16px !important;
        word-break: break-all;
    }
    
    .copy-btn {
        padding: 8px 25px !important;
        font-size: 14px !important;
        width: 100% !important;
    }
}

/* Контакты */
@media (max-width: 768px) {
    .donate-contacts {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .contact-card {
        padding: 25px 15px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 22px !important;
        margin-bottom: 10px;
    }
    
    .contact-card p {
        font-size: 14px !important;
        margin: 3px 0;
    }
}

/* Footer текст */
@media (max-width: 768px) {
    .donate-footer {
        padding: 30px 20px !important;
        margin: 40px 0 !important;
    }
    
    .donate-footer p {
        font-size: 15px !important;
    }
}

/* Кнопка назад */
@media (max-width: 768px) {
    .back-btn-modern {
        padding: 12px 25px !important;
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .collab-hero h1 {
        font-size: 28px !important;
    }
    
    .thanks-card h2 {
        font-size: 22px !important;
    }
    
    .donate-card h3 {
        font-size: 22px !important;
    }
    
    .account-number p {
        font-size: 14px !important;
    }
    
    .contact-card {
        padding: 20px 12px !important;
    }
}
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(102,126,234,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102,126,234,0.15);
    border-color: rgba(102,126,234,0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

.contact-card p {
    color: #2c3e50;
    margin: 5px 0;
    font-size: 16px;
}

.contact-card a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #667eea;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contact-card {
        display: flex !important;
        align-items: center !important;
        text-align: left !important;
        padding: 15px 20px !important;
        gap: 15px !important;
    }
    
    .contact-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
        margin: 0 !important;
        flex-shrink: 0;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-card p {
        margin: 2px 0 !important;
        font-size: 14px !important;
        line-height: 1.4;
    }
    
    /* Для адреса с двумя строками */
    .contact-card:first-child .contact-info p:first-child {
        font-weight: 600;
        color: #2c3e50;
    }
    
    .contact-card:first-child .contact-info p:last-child {
        color: #667eea;
        font-size: 13px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .contact-card {
        padding: 12px 15px !important;
        gap: 12px !important;
    }
    
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .contact-card p {
        font-size: 13px !important;
    }
}
/* Анимация пульсации для сердечка */
@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    35% { transform: scale(1.1); }
    45% { transform: scale(1.2); }
    55% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Анимация плавания для всей кнопки */
@keyframes floatButton {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(0); }
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .donate-fixed-bottom {
        bottom: 20px;
    }
    
    .btn-donate-bottom {
        padding: 12px 30px;
        font-size: 16px;
        gap: 8px;
        /* box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5); */
    }
    
    .btn-donate-bottom i {
        font-size: 20px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .btn-donate-bottom {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .btn-donate-bottom i {
        font-size: 18px;
    }
}

/* Эффект появления при скролле (опционально) */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.donate-fixed-bottom {
    animation: slideUp 0.5s ease-out, floatButton 3s ease-in-out infinite 0.5s;
}
/* Стили для социальных иконок в навбаре */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
    margin-right: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f5fa; /* Светлый фон, как на сайте примере */
    color: #0079c5; /* Основной цвет вашего сайта */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: linear-gradient(135deg, #0079c5, #6d8eb0);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(74, 107, 138, 0.3);
}

/* Для темной темы или другого фона можно сделать иконки светлее */
.navbar.scrolled .social-link {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.navbar.scrolled .social-link:hover {
    background-color: white;
    color: #4a6b8a;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
        margin: 15px 0;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Анимация для иконок */
@keyframes socialPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.social-link:hover {
    animation: socialPulse 0.5s ease;
}
/* ===== СТИЛИ ТОЛЬКО ДЛЯ СТРАНИЦЫ PRESIDENT-SPEECH ===== */
        
        /* Hero секция */
        .president-hero {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .president-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
            background-size: 100px 100px; */
        }
        
        .president-hero .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
        }
        
        .president-hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease;
        }
        
        .president-hero .subtitle {
            font-size: 20px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        /* ===== УЛУЧШЕННАЯ ВИДИМАЯ ВОЛНА ===== */
        .hero-wave-visible {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 2;
            height: 110px; /* Увеличил высоту */
            overflow: hidden;
        }
        
        .hero-wave-visible svg {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .hero-wave-visible svg path {
            fill: url(#waveGradient);
            filter: drop-shadow(0 -5px 15px rgba(0,0,0,0.1));
        }
        
        /* Градиент для волны */
        .hero-wave-visible svg defs linearGradient stop:first-child {
            stop-color: #ffffff;
            stop-opacity: 0.9;
        }
        
        .hero-wave-visible svg defs linearGradient stop:last-child {
            stop-color: #f0f5fa;
            stop-opacity: 1;
        }
        
        /* Дополнительный слой для плавности */
        .president-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, rgba(245, 247, 250, 0.8));
            z-index: 3;
            pointer-events: none;
        }
        
        /* Хлебные крошки */
        .breadcrumb {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        .breadcrumb a {
            color: #4a6b8a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: #667eea;
        }
        
        .breadcrumb span {
            color: #7f8c8d;
            margin: 0 10px;
        }
        
        /* Основной контент */
        .speech-wrapper {
            max-width: 1000px;
            margin: 60px auto;
            padding: 0 20px;
            position: relative;
        }
        
        .speech-card-modern {
            background: white;
            border-radius: 40px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            position: relative;
            border: 1px solid rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
            margin-bottom: 40px;
        }
        
        .speech-card-modern::before {
            content: '"';
            position: absolute;
            top: -30px;
            left: 40px;
            font-size: 200px;
            color: rgba(102, 126, 234, 0.1);
            font-family: 'Georgia', serif;
            line-height: 1;
        }
        
        .speech-card-modern::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            /* background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%); */
            opacity: 0.05;
            border-radius: 0 40px 0 0;
        }
        
        .president-badge {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid rgba(102, 126, 234, 0.1);
        }
        
        .president-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }
        
        .president-info h3 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .president-info p {
            color: #7f8c8d;
            font-size: 16px;
        }
        
        .speech-text {
            font-size: 18px;
            line-height: 1.9;
            color: #4a4a4a;
            position: relative;
            z-index: 2;
        }
        
        .speech-text p {
            margin-bottom: 30px;
            position: relative;
            padding-left: 30px;
        }
        
        .speech-text p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #667eea;
            font-size: 24px;
            line-height: 1;
        }
        
        .speech-text p:first-of-type {
            font-size: 20px;
            font-weight: 500;
            color: #2c3e50;
        }
        
        .signature-modern {
            margin-top: 50px;
            padding-top: 40px;
            border-top: 2px dashed rgba(102, 126, 234, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        
        .signature-left {
            font-style: italic;
            color: #7f8c8d;
        }
        
        .signature-right {
            text-align: right;
        }
        
        .signature-right h4 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 5px;
            font-family: 'Georgia', serif;
        }
        
        .signature-right p {
            color: #667eea;
            font-weight: 600;
        }
        
        .floating-quote {
            position: absolute;
            right: -50px;
            bottom: -30px;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 60px;
            opacity: 0.1;
            z-index: 1;
        }
        
        .back-btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: white;
            color: #4a6b8a;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.2);
            margin-bottom: 40px;
        }
        
        .back-btn-modern:hover {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
            transform: translateX(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            border-color: transparent;
        }
        
        .stats-mini {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .stat-mini-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .stat-mini-item:hover {
            transform: translateY(-5px);
        }
        
        .stat-mini-number {
            font-size: 36px;
            font-weight: 700;
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .stat-mini-label {
            color: #7f8c8d;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .president-hero h1 {
                font-size: 36px;
            }
            
            .speech-card-modern {
                padding: 30px;
            }
            
            .president-badge {
                flex-direction: column;
                text-align: center;
            }
            
            .signature-modern {
                flex-direction: column;
                gap: 20px;
                align-items: center;
                text-align: center;
            }
            
            .signature-right {
                text-align: center;
            }
            
            .stats-mini {
                grid-template-columns: 1fr;
            }
            
            .floating-quote {
                display: none;
            }
            
            .hero-wave-visible {
                height: 100px;
            }
        }
        /* Исправление для большой картинки президента */
.president-photo {
    width: 120px; /* Фиксированная ширина */
    height: 120px; /* Фиксированная высота */
    border-radius: 50%;
    overflow: hidden; /* Обрезаем лишнее */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.president-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Картинка покрывает всю область */
    object-position: center; /* Центрируем изображение */
    transition: transform 0.3s ease;
}

.president-img:hover {
    transform: scale(1.05); /* Легкое увеличение при наведении */
}

/* Если картинка не загрузилась - показываем иконку */
.president-photo img:not([src]), 
.president-photo img[src=""] {
    display: none;
}

.president-photo img:not([src]) + .president-photo::before,
.president-photo img[src=""] + .president-photo::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 48px;
    color: white;
}
/* ===== МОБИЛЬНОЕ МЕНЮ (БУРГЕР) ===== */
@media (max-width: 768px) {
    /* Показываем бургер */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: #4a6b8a;
        margin: 3px 0;
        transition: 0.3s;
    }

    /* Скрываем обычное меню */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        border-radius: 0 0 20px 20px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 1000;
        display: flex !important;
    }

    /* Показываем меню при активном классе */
    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        margin: 15px 0;
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 10px;
    }

    /* Стили для dropdown в мобильном меню */
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 10px 0;
        padding: 10px 0;
        display: none;
        width: 100%;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-menu .dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .nav-menu .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .nav-menu .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .nav-menu .dropdown-item {
        padding: 10px 20px;
        text-align: center;
    }

    /* Социальные иконки в мобильном меню */
    .nav-menu .social-icons {
        justify-content: center;
        margin: 15px 0;
    }

    /* Переключатель языка в мобильном меню */
    .nav-menu .lang-switch {
        justify-content: center;
        margin: 15px 0;
    }

    /* Анимация бургера при открытом меню */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .nav-menu {
        top: 70px;
    }
}
/* ===== КРАСИВЫЙ ФУТЕР ===== */
.footer-premium {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2634 100%);
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
}

.footer-main {
    padding: 60px 0 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Колонки */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Лого */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-link {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Социальные иконки */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(102,126,234,0.3);
}

/* Ссылки */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 18px;
    transition: left 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    left: 3px;
}

/* Контакты */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 15px;
}

.footer-contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(102,126,234,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 14px;
}

/* Часы работы */
.footer-hours {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: #b0b0b0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.footer-hours li:last-child {
    border-bottom: none;
}

/* Подписка */
.footer-newsletter h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255,255,255,0.15);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

/* Нижняя часть футера */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-copyright strong {
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

/* Адаптивность */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 50px;
    }
}
/* ===== ПРОСТОЙ COOKIE BANNER ===== */
.cookie-simple {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(200%);
    transition: transform 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.cookie-simple.show {
    transform: translateY(0);
}

.cookie-simple-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 15px;
}

.cookie-simple-text p {
    margin: 0;
    font-size: 14px;
    color: #2c3e50;
}

.cookie-simple-btn {
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-simple-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 480px) {
    .cookie-simple {
        max-width: 100%;
        border-radius: 30px;
    }
    
    .cookie-simple-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cookie-simple-btn {
        width: 100%;
    }
}

/* Стили для карты */
.map-section {
    margin-top: 60px;
}

.map-container {
    background: white;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.map-container h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.map-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.map-embed {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .map-container {
        padding: 20px;
    }
    
    .map-embed iframe {
        height: 300px;
    }
}
/* Hero секция */
        .collab-hero {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .collab-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
            background-size: 100px 100px; */
        }
        
        .collab-hero .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
        }
        
        .collab-hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease;
        }
        
        .collab-hero .subtitle {
            font-size: 20px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        /* Волна */
        .collab-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 2;
            height: 65px;
            overflow: hidden;
        }
        
        .collab-wave svg {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .collab-wave svg path {
            fill: url(#collabWaveGradient);
            filter: drop-shadow(0 -5px 15px rgba(0,0,0,0.1));
        }
        
        .collab-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, rgba(245, 247, 250, 0.8));
            z-index: 3;
            pointer-events: none;
        }
        
        /* Хлебные крошки */
        .breadcrumb {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        .breadcrumb a {
            color: #4a6b8a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: #667eea;
        }
        
        .breadcrumb span {
            color: #7f8c8d;
            margin: 0 10px;
        }
        
        /* Основной контент */
        .collab-wrapper {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .back-btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: white;
            color: #4a6b8a;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.2);
            margin-bottom: 40px;
        }
        
        .back-btn-modern:hover {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
            transform: translateX(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            border-color: transparent;
        }
        
        /* Текст благодарности */
        .thanks-card {
            background: white;
            border-radius: 40px;
            padding: 50px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            position: relative;
            border: 1px solid rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
            text-align: center;
            margin-bottom: 60px;
        }
        
        .thanks-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 120px;
            color: rgba(102, 126, 234, 0.1);
            font-family: 'Georgia', serif;
            line-height: 1;
        }
        
        .thanks-card p {
            font-size: 18px;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 20px;
        }
        
        .thanks-card .highlight {
            color: #667eea;
            font-weight: 600;
        }
        
        .signature {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px dashed rgba(102, 126, 234, 0.2);
            font-style: italic;
            color: #7f8c8d;
        }
        
        /* Заголовок партнеров */
        .partners-main-title {
            text-align: center;
            margin: 40px 0 50px;
        }
        
        .partners-main-title h2 {
            font-size: 36px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }
        
        .partners-main-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        /* Сетка партнеров */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        /* Карточка партнера */
        .partner-card {
            background: white;
            border-radius: 20px;
            padding: 30px 20px 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.3);
        }
        
        .partner-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .partner-card h3 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 10px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .partner-location {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            color: #7f8c8d;
            font-size: 14px;
            margin: 10px 0;
        }
        
        .partner-location i {
            color: #667eea;
        }
        
        .partner-link {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            text-decoration: none;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .partner-link:hover {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
        }
        
        hr.partner-divider {
            margin: 15px 0 5px;
            border: 0;
            border-top: 2px solid rgba(102, 126, 234, 0.2);
            width: 50px;
        }
        
        /* Адаптация */
        @media (max-width: 768px) {
            .collab-hero h1 {
                font-size: 36px;
            }
            
            .thanks-card {
                padding: 30px 20px;
            }
            
            .thanks-card p {
                font-size: 16px;
            }
            
            .partners-main-title h2 {
                font-size: 28px;
            }
            
            .collab-wave {
                height: 100px;
            }
        }
        /* Цветная волна */
.hero-wave-color {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    height: 150px; /* Чуть выше */
    overflow: hidden;
}

.hero-wave-color svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Добавляем легкую тень для глубины */
.hero-wave-color svg path {
    filter: drop-shadow(0 -5px 20px rgba(102,126,234,0.3));
}

/* Анимация для волны (легкое движение) */
@keyframes waveFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.hero-wave-color {
    animation: waveFloat 8s ease-in-out infinite;
}

/* Затемнение для лучшей читаемости текста */
.president-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1));
    z-index: 3;
    pointer-events: none;
}
@media (max-width: 768px) {
    .hero-wave-color {
        height: 80px; /* Поменьше на мобильных */
    }
}
        /* Hero секция для Vision - ТОТ ЖЕ ГРАДИЕНТ, ЧТО И НА СТРАНИЦЕ ПРЕЗИДЕНТА */
        .vision-hero {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .vision-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
            background-size: 100px 100px; */
        }
        
        .vision-hero .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
        }
        
        .vision-hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease;
        }
        
        .vision-hero .subtitle {
            font-size: 20px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        /* Волна - такая же */
        .vision-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 2;
            height: 65px;
            overflow: hidden;
        }
        
        .vision-wave svg {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .vision-wave svg path {
            fill: url(#visionWaveGradient);
            filter: drop-shadow(0 -5px 15px rgba(0,0,0,0.1));
        }
        
        .vision-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, rgba(245, 247, 250, 0.8));
            z-index: 3;
            pointer-events: none;
        }
        
        /* Хлебные крошки */
        .breadcrumb {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        .breadcrumb a {
            color: #4a6b8a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: #667eea;
        }
        
        .breadcrumb span {
            color: #7f8c8d;
            margin: 0 10px;
        }
        
        /* Основной контент */
        .vision-wrapper {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .back-btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: white;
            color: #4a6b8a;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.2);
            margin-bottom: 40px;
        }
        
        .back-btn-modern:hover {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
            transform: translateX(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            border-color: transparent;
        }
        
        /* Карточки миссии и видения */
        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .mission-card, .vision-card {
            background: white;
            border-radius: 40px;
            padding: 50px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            position: relative;
            border: 1px solid rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
        }
        
        .mission-card::before, .vision-card::before {
            content: '“';
            position: absolute;
            top: -20px;
            left: 40px;
            font-size: 150px;
            color: rgba(102, 126, 234, 0.1);
            font-family: 'Georgia', serif;
            line-height: 1;
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            color: white;
            font-size: 36px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }
        
        .mission-card h2, .vision-card h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .mission-card h2::after, .vision-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        .mission-text, .vision-text {
            font-size: 18px;
            line-height: 1.8;
            color: #4a4a4a;
        }
        
        .mission-text p, .vision-text p {
            margin-bottom: 20px;
        }
        
        /* Список видения */
        .vision-list {
            list-style: none;
            padding: 0;
        }
        
        .vision-list li {
            margin-bottom: 25px;
            padding-left: 35px;
            position: relative;
            font-size: 17px;
            line-height: 1.7;
            color: #4a4a4a;
        }
        
        .vision-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: #667eea;
            font-size: 20px;
        }
        
        /* Дополнительная секция с целями */
        .goals-section {
            margin-top: 60px;
        }
        
        .goals-title {
            text-align: center;
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .goals-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        .goals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .goal-item {
            background: white;
            border-radius: 30px;
            padding: 40px 30px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }
        
        .goal-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.3);
        }
        
        .goal-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 30px;
        }
        
        .goal-item h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .goal-item p {
            color: #7f8c8d;
            line-height: 1.6;
            font-size: 15px;
        }
        @media (max-width: 768px) {
    /* Контейнеры */
    .program-wrapper,
    .container,
    .breadcrumb {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }
    
    /* Сетка целей */
    .goals-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .goals-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
    
    .goals-grid > div div:first-child {
        width: 70px !important;
        height: 70px !important;
        font-size: 28px !important;
        margin: 0 auto 15px !important;
    }
    
    .goals-grid h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        word-wrap: break-word !important;
    }
    
    .goals-grid p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        text-align: center !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
        padding: 0 5px !important;
    }
    
    /* Блок "О программе" */
    .program-about {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .program-about div:first-child {
        order: 2 !important;
    }
    
    .program-about div:last-child {
        order: 1 !important;
    }
    
    .program-about img {
        height: 250px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    
    .program-about h2 {
        font-size: 28px !important;
        text-align: center !important;
    }
    
    .program-about h2 span {
        display: inline-block !important;
    }
    
    .program-about h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .program-about p {
        font-size: 16px !important;
        text-align: center !important;
    }
    
    /* Статистика */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .stats-grid > div {
        padding: 25px 15px !important;
    }
    
    .stats-grid > div div:first-child {
        font-size: 32px !important;
    }
    
    /* Галерея */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .gallery-grid > div {
        padding: 15px !important;
    }
    
    .gallery-grid img {
        height: 180px !important;
    }
    
    /* Следующее мероприятие */
    .next-event {
        padding: 40px 20px !important;
    }
    
    .next-event h2 {
        font-size: 28px !important;
    }
    
    .next-event .program-btn {
        padding: 12px 30px !important;
        font-size: 16px !important;
    }
    
    /* Контакты */
    .contact-links {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .contact-links a {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-grid img {
        height: 220px !important;
    }
    
    .program-hero h1 {
        font-size: 28px !important;
    }
    
    .program-hero .subtitle {
        font-size: 14px !important;
        padding: 0 10px !important;
    }
    
    .back-btn-modern {
        padding: 10px 20px !important;
        font-size: 13px !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Адаптация */
        @media (max-width: 992px) {
            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .mission-card, .vision-card {
                padding: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .vision-hero h1 {
                font-size: 36px;
            }
            
            .mission-card h2, .vision-card h2 {
                font-size: 28px;
            }
            
            .mission-text, .vision-text {
                font-size: 16px;
            }
            
            .vision-list li {
                font-size: 15px;
            }
            
            .goals-title {
                font-size: 28px;
            }
            
            .vision-wave {
                height: 100px;
            }
        }
        
        @media (max-width: 480px) {
            .mission-card, .vision-card {
                padding: 30px 20px;
            }
            
            .goal-item {
                padding: 30px 20px;
            }
        }
                /* Hero секция */
        .contacts-hero {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .contacts-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
            background-size: 100px 100px; */
        }
        
        .contacts-hero .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
        }
        
        .contacts-hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease;
        }
        
        .contacts-hero .subtitle {
            font-size: 20px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        /* Волна */
        .contacts-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 2;
            height: 100px;
            overflow: hidden;
        }
        
        .contacts-wave svg {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .contacts-wave svg path {
            fill: url(#contactsWaveGradient);
        }
        
        .contacts-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, rgba(245, 247, 250, 0.8));
            z-index: 3;
            pointer-events: none;
        }
        
        /* Хлебные крошки */
        .breadcrumb {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        .breadcrumb a {
            color: #4a6b8a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: #667eea;
        }
        
        .breadcrumb span {
            color: #7f8c8d;
            margin: 0 10px;
        }
        
        /* Основной контент */
        .contacts-wrapper {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .back-btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: white;
            color: #4a6b8a;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.2);
            margin-bottom: 40px;
        }
        
        .back-btn-modern:hover {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
            transform: translateX(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            border-color: transparent;
        }
        
        /* Введение */
        .intro-card {
            background: white;
            border-radius: 40px;
            padding: 50px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            position: relative;
            border: 1px solid rgba(255,255,255,0.5);
            text-align: center;
            margin-bottom: 60px;
        }
        
        .intro-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 120px;
            color: rgba(102, 126, 234, 0.1);
            font-family: 'Georgia', serif;
            line-height: 1;
        }
        
        .intro-card p {
            font-size: 18px;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 20px;
        }
        
        .intro-card .highlight {
            color: #667eea;
            font-weight: 600;
        }
        
        .thanks-message {
            font-size: 22px;
            font-weight: 500;
            color: #2c3e50;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 2px dashed rgba(102, 126, 234, 0.2);
        }
        
        /* Сетка контактов */
        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        /* Карточка контактной информации */
        .contact-info-card {
            background: white;
            border-radius: 40px;
            padding: 50px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            position: relative;
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .contact-info-card h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-info-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            font-size: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
            transform: scale(1.1);
        }
        
        .contact-details h3 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .contact-details p, .contact-details a {
            color: #7f8c8d;
            text-decoration: none;
            font-size: 16px;
            line-height: 1.5;
            transition: color 0.3s ease;
        }
        
        .contact-details a:hover {
            color: #667eea;
        }
        
        /* Карточка формы обратной связи */
        .contact-form-card {
            background: white;
            border-radius: 40px;
            padding: 50px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.5);
        }
        
        .contact-form-card h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-form-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(102, 126, 234, 0.1);
            border-radius: 30px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(102, 126, 234, 0.02);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }
        
        /* Карта (можно добавить позже) */
        .map-section {
            margin-top: 60px;
        }
        
        .map-container {
            background: white;
            border-radius: 40px;
            padding: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .map-placeholder {
            background: rgba(102, 126, 234, 0.05);
            border-radius: 30px;
            padding: 80px;
            color: #7f8c8d;
        }
        
        .map-placeholder i {
            font-size: 48px;
            color: #667eea;
            margin-bottom: 20px;
            opacity: 0.3;
        }
        
        /* Адаптация */
        @media (max-width: 992px) {
            .contacts-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .contacts-hero h1 {
                font-size: 36px;
            }
            
            .intro-card {
                padding: 30px 20px;
            }
            
            .intro-card p {
                font-size: 16px;
            }
            
            .thanks-message {
                font-size: 18px;
            }
            
            .contact-info-card,
            .contact-form-card {
                padding: 30px 20px;
            }
            
            .contact-info-card h2,
            .contact-form-card h2 {
                font-size: 28px;
            }
            
            .map-placeholder {
                padding: 40px 20px;
            }
        }
        @media (max-width: 768px) {
    .contact-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        background: white;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 15px !important;
    }
    
    .contact-icon {
        margin-bottom: 10px !important;
    }
    
    .contact-details {
        width: 100%;
    }
    
    .contact-details h3 {
        text-align: center;
    }
}
        /* ===== СТИЛИ ДЛЯ VOLUNTEERS PAGE ===== */

/* Стили для статистики */
.volunteer-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 50px 0 !important;
}
.volunteer-stats-grid .stat-item {
    background: white;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(102,126,234,0.1);
    transition: transform 0.3s ease;
}

.volunteer-stats-grid .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(102,126,234,0.15);
    border-color: rgba(102,126,234,0.3);
}

.volunteer-stats-grid .stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1.2;
}

.volunteer-stats-grid .stat-label {
    color: #7f8c8d;
    font-size: 16px;
    font-weight: 500;
}

/* Стили для секции "Բաց դռներ" */
.opendoor-section {
    background: white;
    border-radius: 40px;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(102,126,234,0.1);
}

.opendoor-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.opendoor-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.opendoor-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 20px;
    color: #667eea;
    margin: 30px 0;
    padding: 20px;
    background: rgba(102,126,234,0.05);
    border-radius: 20px;
    text-align: center;
    border: 1px dashed rgba(102,126,234,0.3);
}

/* Стили для формы */
.registration-form {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px dashed rgba(102,126,234,0.2);
}

.registration-form h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(102,126,234,0.1);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 5px rgba(102,126,234,0.1);
    background: white;
}

.form-checkbox {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    color: #2c3e50;
    font-size: 15px;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102,126,234,0.4);
}

/* Intro card стили (если их нет) */
.intro-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(255,255,255,0.5);
    text-align: center;
    margin-bottom: 60px;
}

.intro-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: rgba(102, 126, 234, 0.1);
    font-family: 'Georgia', serif;
    line-height: 1;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.intro-card .highlight {
    color: #667eea;
    font-weight: 600;
}

.thanks-message {
    font-size: 22px;
    font-weight: 500;
    color: #2c3e50;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed rgba(102, 126, 234, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .volunteer-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .opendoor-section {
        padding: 30px 20px;
    }
    
    .opendoor-section h2 {
        font-size: 28px;
    }
    
    .opendoor-content p {
        font-size: 16px;
    }
    
    .intro-card {
        padding: 30px 20px;
    }
    
    .intro-card p {
        font-size: 16px;
    }
    
    .thanks-message {
        font-size: 18px;
    }
    
    .registration-form h3 {
        font-size: 20px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 36px;
    }
    
    .opendoor-section h2 {
        font-size: 24px;
    }
    
    .highlight-text {
        font-size: 18px;
        padding: 15px;
    }
}
/* ===== МОДАЛЬНОЕ ОКНО ДЛЯ КАРТИНОК ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #667eea;
    background: white;
    transform: rotate(90deg);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 18px;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}
/* ===== СТИЛИ ДЛЯ КОНТАКТНЫХ ЭЛЕМЕНТОВ ===== */
.footer-contact-item {
    display: flex;
    align-items: flex-start; /* Для адреса, чтобы иконка была сверху */
    gap: 15px;
    margin-bottom: 15px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Для email и телефона (короткие строки) */
.footer-contact-item:has(a) {
    align-items: center; /* По центру для коротких строк */
}

.footer-contact-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    flex-shrink: 0; /* Иконка не сжимается */
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

/* Для span (текст) */
.footer-contact-item span,
.footer-contact-item .address-text span {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
}

/* Для ссылок (email, телефон) */
.footer-contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-contact-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.footer-contact-item a:hover {
    color: #667eea;
}

.footer-contact-item a:hover::after {
    width: 100%;
}

/* Специально для адреса (многострочный) */
.footer-contact-item .address-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer-contact-item .address-text span:first-child {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .footer-contact-item {
        gap: 12px;
        padding: 5px 10px;
    }
    
    .footer-contact-item i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .footer-contact-item span,
    .footer-contact-item a,
    .footer-contact-item .address-text span {
        font-size: 13px;
    }
}

        /* Hero секция для Services */
        .services-hero {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .services-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
            background-size: 100px 100px; */
        }
        
        .services-hero .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: white;
        }
        
        .services-hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease;
        }
        
        .services-hero .subtitle {
            font-size: 20px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        /* Волна */
        .services-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 2;
            height: 180px;
            overflow: hidden;
        }
        
        .services-wave svg {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .services-wave svg path {
            fill: url(#servicesWaveGradient);
            filter: drop-shadow(0 -5px 15px rgba(0,0,0,0.1));
        }
        
        .services-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, rgba(245, 247, 250, 0.8));
            z-index: 3;
            pointer-events: none;
        }
        /* Для планшетов */
@media (max-width: 992px) {
    .services-grid {
        gap: 20px !important;
    }
    
    .services-category {
        padding: 25px 15px !important;
    }
}

/* Для мобильных - 1 карточка в ряд */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .services-items-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Для последней карточки в альтернативных услугах */
    .services-items-grid .service-item[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
    
    .service-item {
        min-height: 130px !important;
        padding: 12px 10px !important;
    }
    
    .service-item div {
        width: 36px !important;
        height: 36px !important;
    }
    
    .service-item div i {
        font-size: 18px !important;
    }
    
    .service-item span {
        font-size: 14px !important;
    }
}

/* Для очень маленьких телефонов */
@media (max-width: 480px) {
    .service-item {
        min-height: 120px !important;
    }
    
    .service-item div {
        width: 32px !important;
        height: 32px !important;
    }
    
    .service-item span {
        font-size: 13px !important;
    }
}

/* Стили для карточек */
.service-item {
    transition: all 0.3s ease !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.service-item:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #667eea !important;
    box-shadow: 0 10px 25px rgba(102,126,234,0.3);
}

.service-item:hover div {
    transform: scale(1.1);
}
        /* Хлебные крошки */
        .breadcrumb {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        .breadcrumb a {
            color: #4a6b8a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: #667eea;
        }
        
        .breadcrumb span {
            color: #7f8c8d;
            margin: 0 10px;
        }
        
        /* Основной контент */
        .services-wrapper {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .back-btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: white;
            color: #4a6b8a;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.2);
            margin-bottom: 40px;
        }
        
        .back-btn-modern:hover {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
            transform: translateX(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            border-color: transparent;
        }
        
        /* Введение */
        .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 18px;
            line-height: 1.8;
            color: #4a4a4a;
            background: white;
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }
        
        .services-intro p {
            margin-bottom: 20px;
        }
        
        .services-intro .highlight {
            color: #667eea;
            font-weight: 600;
        }
        
        /* Заголовки категорий */
        .category-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 60px 0 40px;
        }
        
        .category-header:first-of-type {
            margin-top: 20px;
        }
        
        .category-icon-large {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }
        
        .category-header h2 {
            font-size: 36px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 10px;
        }
        
        .category-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        /* Сетка карточек услуг */
        .services-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        /* Карточка услуги */
        .service-card {
            background: white;
            border-radius: 30px;
            padding: 35px 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(102, 126, 234, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.3);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: #667eea;
            font-size: 30px;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-card h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .service-card p {
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .service-tag {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            margin-top: auto;
        }
        
        /* Статистика */
        .stats-services {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 60px 0;
        }
        
        .stat-service-item {
            background: white;
            border-radius: 30px;
            padding: 50px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }
        
        .stat-service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.3);
        }
        
        .stat-service-number {
            font-size: 56px;
            font-weight: 700;
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .stat-service-label {
            color: #7f8c8d;
            font-size: 18px;
            font-weight: 500;
        }
        
        /* Дополнительная информация */
        .services-footer {
            text-align: center;
            margin-top: 60px;
            padding: 50px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-radius: 40px;
        }
        
        .services-footer p {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        .services-footer .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 18px 50px;
            background: linear-gradient(135deg, #0079c5 0%, #2e63c5 100%);
            color: white;
            text-decoration: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }
        
        .services-footer .contact-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(102, 126, 234, 0.5);
        }
        
        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Адаптация */
        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 36px;
            }
            
            .category-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .category-header h2 {
                font-size: 28px;
            }
            
            .category-header h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .services-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .stats-services {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stat-service-item {
                padding: 40px;
            }
            
            .stat-service-number {
                font-size: 42px;
            }
            
            .services-wave {
                height: 100px;
            }
            
            .services-footer {
                padding: 40px 20px;
            }
            
            .services-footer p {
                font-size: 18px;
            }
            
            .services-footer .contact-link {
                padding: 15px 40px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .service-card {
                padding: 25px 20px;
            }
            
            .stat-service-item {
                padding: 30px 20px;
            }
        }
        @media (max-width: 992px) {
    .services-grid {
        gap: 30px !important;
    }
    
    .program-goals {
        padding: 40px !important;
    }
    
    .program-goals h2 {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .program-goals {
        padding: 35px 25px !important;
    }
    
    .program-goals h2 {
        font-size: 26px !important;
        margin-bottom: 25px !important;
    }
    
    .program-goals ul li {
        padding: 8px 12px !important;
        margin-bottom: 10px !important;
    }
    
    .program-goals ul li span:last-child {
        font-size: 15px !important;
    }
    
    .program-goals ul li span:first-child {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }
    
    .services-stats {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 40px 0 !important;
    }
    
    .services-stats div {
        padding: 40px 20px !important;
    }
    
    .services-stats div div:first-child {
        font-size: 48px !important;
    }
    
    .services-stats div div:last-child {
        font-size: 16px !important;
    }
    
    .back-btn-modern {
        padding: 12px 30px !important;
        font-size: 16px !important;
    }
    
    .thanks-card p {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .program-goals {
        padding: 25px 20px !important;
    }
    
    .program-goals h2 {
        font-size: 22px !important;
    }
    
    .program-goals ul li {
        gap: 10px !important;
        padding: 8px 10px !important;
    }
    
    .program-goals ul li span:last-child {
        font-size: 14px !important;
    }
    
    .program-goals ul li span:first-child {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }
}
@media (max-width: 1200px) {
    .program-wrapper {
        max-width: 95% !important;
    }
}

@media (max-width: 992px) {
    .program-about {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .program-about div:last-child {
        order: -1;
    }
    
    .program-about img {
        height: 350px !important;
    }
    
    .goals-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    .program-goals {
        padding: 50px !important;
    }
}

@media (max-width: 768px) {
    .program-hero h1 {
        font-size: 36px !important;
    }
    
    .program-hero .subtitle {
        font-size: 16px !important;
        padding: 0 15px !important;
    }
    
    .program-wave svg {
        height: 60px !important;
    }
    
    .program-about h2 {
        font-size: 28px !important;
    }
    
    .program-about p {
        font-size: 16px !important;
    }
    
    .program-about img {
        height: 250px !important;
    }
    
    .goals-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .program-goals {
        padding: 40px 25px !important;
    }
    
    .program-goals h2 {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }
    
    .goals-grid h3 {
        font-size: 18px !important;
    }
    
    .goals-grid p {
        font-size: 14px !important;
    }
    
    .goals-grid div:first-child {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .stats-grid div {
        padding: 30px 15px !important;
    }
    
    .stats-grid div div:first-child {
        font-size: 32px !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .gallery-grid div {
        padding: 15px !important;
    }
    
    .gallery-grid img {
        height: 180px !important;
    }
    
    .next-event {
        padding: 40px 20px !important;
    }
    
    .next-event h2 {
        font-size: 28px !important;
    }
    
    .next-event div:first-of-type {
        font-size: 36px !important;
    }
    
    .next-event .program-btn {
        padding: 12px 30px !important;
        font-size: 16px !important;
    }
    
    .back-btn-modern {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .program-hero h1 {
        font-size: 28px !important;
    }
    
    .program-about h2 {
        font-size: 24px !important;
    }
    
    .program-about img {
        height: 200px !important;
    }
    
    .program-goals {
        padding: 30px 20px !important;
    }
    
    .program-goals h2 {
        font-size: 24px !important;
    }
    
    .goals-grid h3 {
        font-size: 16px !important;
    }
    
    .goals-grid p {
        font-size: 13px !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-grid img {
        height: 220px !important;
    }
    
    .next-event h2 {
        font-size: 24px !important;
    }
    
    .next-event div:nth-child(3) {
        font-size: 24px !important;
    }
    
    .next-event div:nth-child(4) {
        font-size: 16px !important;
    }
    
    .contact-links {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .contact-links a {
        font-size: 16px !important;
    }
}

/* Специально для open-doors.php */
@media (max-width: 992px) {
    .open-doors-goals {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .open-doors-goals {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .open-doors-goals > div {
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* ИСПРАВЛЕНО: только для иконок */
    .open-doors-goals > div > div:first-child {
        width: 70px !important;
        height: 70px !important;
        font-size: 28px !important;
        margin: 0 auto 20px !important;
    }
    
    .open-doors-goals h3 {
        font-size: 20px !important;
    }
    
    .open-doors-goals p {
        font-size: 15px !important;
    }
}

/* ===== АДАПТИВНОСТЬ ДЛЯ MESCS.PHP ===== */

/* Планшеты */
@media (max-width: 992px) {
    .mescs-about {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .mescs-about div:last-child {
        order: -1;
    }
    
    .mescs-about img {
        height: 350px !important;
    }
    
    .mescs-directions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    .mescs-goals {
        padding: 50px 40px !important;
    }
}

/* Телефоны */
@media (max-width: 768px) {
    .mescs-hero h1 {
        font-size: 36px !important;
    }
    
    .mescs-hero .subtitle {
        font-size: 16px !important;
        padding: 0 15px !important;
    }
    
    .mescs-wave svg {
        height: 60px !important;
    }
    
    .mescs-about h2 {
        font-size: 28px !important;
        text-align: center !important;
    }
    
    .mescs-about h2 span {
        display: inline-block !important;
    }
    
    .mescs-about h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .mescs-about p {
        font-size: 16px !important;
        text-align: center !important;
    }
    
    .mescs-about img {
        height: 250px !important;
    }
    
    .mescs-directions-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .mescs-goals {
        padding: 40px 25px !important;
    }
    
    .mescs-goals h2 {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }
    
    .mescs-directions-grid h3 {
        font-size: 20px !important;
    }
    
    .mescs-directions-grid p {
        font-size: 15px !important;
    }
    
    /* ИСПРАВЛЕНО: теперь применяется только к иконкам */
    .mescs-directions-grid > div > div:first-child {
        width: 70px !important;
        height: 70px !important;
        font-size: 28px !important;
        margin: 0 auto 20px !important;
    }
    
    .mescs-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .mescs-stats > div {
        padding: 30px 15px !important;
    }
    
    .mescs-stats > div div:first-child {
        font-size: 32px !important;
    }
    
    .mescs-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .mescs-gallery > div {
        padding: 15px !important;
    }
    
    .mescs-gallery img {
        height: 180px !important;
    }
    
    .back-btn-modern {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .mescs-hero h1 {
        font-size: 28px !important;
    }
    
    .mescs-hero .subtitle {
        font-size: 14px !important;
    }
    
    .mescs-about h2 {
        font-size: 24px !important;
    }
    
    .mescs-about img {
        height: 200px !important;
    }
    
    .mescs-goals {
        padding: 30px 20px !important;
    }
    
    .mescs-goals h2 {
        font-size: 24px !important;
    }
    
    .mescs-directions-grid h3 {
        font-size: 18px !important;
    }
    
    .mescs-directions-grid p {
        font-size: 14px !important;
    }
    
    .mescs-stats {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .mescs-gallery {
        grid-template-columns: 1fr !important;
    }
    
    .mescs-gallery img {
        height: 220px !important;
    }
    
    .mescs-wrapper .back-btn-modern {
        width: 100% !important;
        justify-content: center !important;
    }
}
/* ===== АДАПТИВНОСТЬ ДЛЯ KEY2ENABLE.PHP ===== */

@media (max-width: 992px) {
    .key2enable-about {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .key2enable-about div:last-child {
        order: -1;
    }
    
    .key2enable-about img {
        height: 350px !important;
    }
    
    .key2enable-tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    .key2enable-tech {
        padding: 50px 40px !important;
    }
}

@media (max-width: 768px) {
    .key2enable-hero h1 {
        font-size: 36px !important;
    }
    
    .key2enable-hero .subtitle {
        font-size: 16px !important;
        padding: 0 15px !important;
    }
    
    .key2enable-wave svg {
        height: 60px !important;
    }
    
    .key2enable-about h2 {
        font-size: 28px !important;
        text-align: center !important;
    }
    
    .key2enable-about h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .key2enable-about p {
        font-size: 16px !important;
        text-align: center !important;
    }
    
    .key2enable-about img {
        height: 250px !important;
    }
    
    .key2enable-tech-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .key2enable-tech {
        padding: 40px 25px !important;
    }
    
    .key2enable-tech h2 {
        font-size: 28px !important;
    }
    
    /* ИСПРАВЛЕНО: только для иконок */
    .key2enable-tech-grid > div > div:first-child {
        width: 70px !important;
        height: 70px !important;
        font-size: 28px !important;
        margin: 0 auto 20px !important;
    }
    
    .key2enable-tech-grid h3 {
        font-size: 20px !important;
    }
    
    .key2enable-tech-grid p {
        font-size: 15px !important;
    }
    
    .key2enable-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .key2enable-stats > div {
        padding: 30px 15px !important;
    }
    
    .key2enable-stats > div div:first-child {
        font-size: 32px !important;
    }
    
    .key2enable-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .key2enable-gallery > div {
        padding: 15px !important;
    }
    
    .key2enable-gallery img {
        height: 180px !important;
    }
}

@media (max-width: 480px) {
    .key2enable-hero h1 {
        font-size: 28px !important;
    }
    
    .key2enable-about h2 {
        font-size: 24px !important;
    }
    
    .key2enable-about img {
        height: 200px !important;
    }
    
    .key2enable-tech {
        padding: 30px 20px !important;
    }
    
    .key2enable-tech h2 {
        font-size: 24px !important;
    }
    
    .key2enable-stats {
        grid-template-columns: 1fr !important;
    }
    
    .key2enable-gallery {
        grid-template-columns: 1fr !important;
    }
    
    .key2enable-gallery img {
        height: 220px !important;
    }
}
@media (max-width: 768px) {
    .dropdown-container {
        justify-content: space-between !important;
    }
    
    .dropdown-container .nav-link {
        text-align: left !important;
        padding-left: 20px !important;
    }
    
    .dropdown-container .dropdown-toggle {
        padding: 10px 20px !important;
    }
    
    /* Убираем подчеркивание при наведении для мобильных */
    .nav-link::after {
        display: none;
    }
    
    /* Стиль для активного dropdown */
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 10px 0;
        padding: 10px 0;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    
    .dropdown-item {
        text-align: center;
        padding: 12px 20px;
    }
}
@media (max-width: 768px) {
    .mobile-dropdown-wrapper {
        border-bottom: 1px solid rgba(102,126,234,0.1);
    }
    
    .dropdown-arrow {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        margin-right: 10px !important;
        box-shadow: 0 5px 15px rgba(102,126,234,0.3) !important;
        transition: all 0.3s ease !important;
    }
    
    .dropdown-arrow i {
        color: white !important;
        font-size: 18px !important;
    }
    
    .dropdown-arrow:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(102,126,234,0.4);
    }
    
    .dropdown.active .dropdown-arrow i {
        transform: rotate(180deg);
    }
    
    .dropdown.active .dropdown-arrow {
        background: linear-gradient(135deg, #764ba2, #667eea) !important;
    }
    
    .dropdown-menu {
        margin-top: 10px;
        background: #f8f9fa;
        border-radius: 15px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        padding: 12px 25px;
        border-bottom: 1px solid rgba(102,126,234,0.1);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
}
/* На десктопе скрываем стрелку */
@media (min-width: 769px) {
    .dropdown-arrow {
        display: none !important;
    }
    
    /* Оставляем стандартную стрелку в тексте для десктопа */
    .dropdown-toggle i {
        display: inline-block;
    }
}

/* На мобильных показываем красивую стрелку */
@media (max-width: 768px) {
    /* Прячем стандартную стрелку */
    .dropdown-toggle i {
        display: none !important;
    }
    
    .dropdown-arrow {
        display: flex !important;
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        margin-right: 10px !important;
        box-shadow: 0 5px 15px rgba(102,126,234,0.3) !important;
        transition: all 0.3s ease !important;
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    
    .dropdown-arrow i {
        color: white !important;
        font-size: 18px !important;
        display: inline-block !important;
    }
    
    .dropdown-arrow:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(102,126,234,0.4);
    }
    
    .dropdown.active .dropdown-arrow i {
        transform: rotate(180deg);
    }
    
    .dropdown.active .dropdown-arrow {
        background: linear-gradient(135deg, #764ba2, #667eea) !important;
    }
}
/* ===== АДАПТИВНОСТЬ ДЛЯ VOICE-OF-DREAM.PHP ===== */

@media (max-width: 992px) {
    .voice-about {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .voice-about div:last-child {
        order: -1;
    }
    
    .voice-about img {
        height: 350px !important;
    }
    
    .voice-directions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    .voice-directions {
        padding: 50px 40px !important;
    }
}

@media (max-width: 768px) {
    .voice-hero h1 {
        font-size: 36px !important;
    }
    
    .voice-hero .subtitle {
        font-size: 16px !important;
        padding: 0 15px !important;
    }
    
    .voice-wave svg {
        height: 60px !important;
    }
    
    .voice-about h2 {
        font-size: 28px !important;
        text-align: center !important;
    }
    
    .voice-about h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .voice-about p {
        font-size: 16px !important;
        text-align: center !important;
    }
    
    .voice-about img {
        height: 250px !important;
    }
    
    .voice-directions-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .voice-directions {
        padding: 40px 25px !important;
    }
    
    .voice-directions h2 {
        font-size: 28px !important;
    }
    
    /* ИСПРАВЛЕНО: только для иконок */
    .voice-directions-grid > div > div:first-child {
        width: 70px !important;
        height: 70px !important;
        font-size: 28px !important;
        margin: 0 auto 20px !important;
    }
    
    .voice-directions-grid h3 {
        font-size: 20px !important;
    }
    
    .voice-directions-grid p {
        font-size: 15px !important;
    }
    
    .voice-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .voice-stats > div {
        padding: 30px 15px !important;
    }
    
    .voice-stats > div div:first-child {
        font-size: 32px !important;
    }
    
    .voice-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .voice-gallery > div {
        padding: 15px !important;
    }
    
    .voice-gallery img {
        height: 180px !important;
    }
}

@media (max-width: 480px) {
    .voice-hero h1 {
        font-size: 28px !important;
    }
    
    .voice-about h2 {
        font-size: 24px !important;
    }
    
    .voice-about img {
        height: 200px !important;
    }
    
    .voice-directions {
        padding: 30px 20px !important;
    }
    
    .voice-directions h2 {
        font-size: 24px !important;
    }
    
    .voice-stats {
        grid-template-columns: 1fr !important;
    }
    
    .voice-gallery {
        grid-template-columns: 1fr !important;
    }
    
    .voice-gallery img {
        height: 220px !important;
    }
}
/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 992px) {
    .inclusive-about {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .inclusive-about div:last-child {
        order: -1;
    }
    
    .inclusive-about img {
        height: 350px !important;
    }
    
    .inclusive-directions-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .inclusive-hero h1 {
        font-size: 36px !important;
    }
    
    .inclusive-hero .subtitle {
        font-size: 16px !important;
    }
    
    .inclusive-about h2 {
        font-size: 28px !important;
        text-align: center !important;
    }
    
    .inclusive-about h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .inclusive-about p {
        font-size: 16px !important;
        text-align: center !important;
    }
    
    .inclusive-about img {
        height: 250px !important;
    }
    
    .inclusive-directions {
        padding: 40px 25px !important;
    }
    
    .inclusive-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .inclusive-stats > div {
        padding: 30px 15px !important;
    }
    
    .inclusive-stats > div div:first-child {
        font-size: 32px !important;
    }
    
    .inclusive-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .inclusive-gallery img {
        height: 180px !important;
    }
}

@media (max-width: 480px) {
    .inclusive-hero h1 {
        font-size: 28px !important;
    }
    
    .inclusive-about h2 {
        font-size: 24px !important;
    }
    
    .inclusive-about img {
        height: 200px !important;
    }
    
    .inclusive-stats {
        grid-template-columns: 1fr !important;
    }
    
    .inclusive-gallery {
        grid-template-columns: 1fr !important;
    }
    
    .inclusive-gallery img {
        height: 220px !important;
    }
}
/* ===== КНОПКА "НАВЕРХ" ===== */
.scroll-top {
    /* Базовые стили */
    position: fixed !important;
    bottom: 100px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #3a4a67, #0079c5) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    box-shadow: 0 5px 20px rgba(102,126,234,0.4) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    
    /* Z-индекс максимальный */
    z-index: 9999999999 !important;
    
    /* Видимость */
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    
    /* Защита от перекрытия */
    pointer-events: none !important;
}

.scroll-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 90px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
        /* Еще больше z-index */
        z-index: 99999999999 !important;
    }
}

/* Тестовый вариант - принудительно показываем для отладки */
.scroll-top.debug-show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: red !important; /* Чтобы точно увидеть */
}
/* vision slide css */
/* Обертка для слайдера */
.goals-slider-wrapper {
    position: relative;
    margin: 40px -20px 40px -20px;
    padding: 0 20px;
}

/* Контейнер с прокруткой */
.goals-slider-container {
    overflow: hidden;
}

/* Трек с карточками */
.goals-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

/* Карточки */
.slider-item {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(102,126,234,0.1);
    box-sizing: border-box;
}

/* Кнопки навигации */
.goals-slider-prev,
.goals-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goals-slider-prev {
    left: 0;
}

.goals-slider-next {
    right: 0;
}

.goals-slider-prev:hover,
.goals-slider-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(102,126,234,0.5);
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .slider-item {
        flex: 0 0 calc(50% - 15px) !important;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 calc(100% - 0px) !important;
        padding: 30px 20px !important;
    }
    
    .goals-slider-prev,
    .goals-slider-next {
        width: 35px !important;
        height: 35px !important;
    }
    
    .goals-slider-prev {
        left: -5px;
    }
    
    .goals-slider-next {
        right: -5px;
    }
}
/* Стили для галереи Vision*/
.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102,126,234,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-slider-prev,
.gallery-slider-next {
    transition: all 0.3s ease;
}

.gallery-slider-prev:hover,
.gallery-slider-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(102,126,234,0.5);
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 calc(50% - 13px) !important;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(100% - 0px) !important;
    }
    
    .gallery-slider-prev,
    .gallery-slider-next {
        width: 35px !important;
        height: 35px !important;
    }
    
    .gallery-item img {
        height: 200px !important;
    }
}