:root {
    --primary-color: #6c5ce7; /* Пастельный фиолетовый */
    --accent-color: #4834d4; /* Более темный фиолетовый */
    --light-green: #f1f2ff; /* Светло-фиолетовый */
    --very-light-green: #f8f9fe; /* Очень светлый фиолетовый */
    --text-color: #2d3436; /* Темно-серый для текста */
    --bg-color: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 5px 20px rgba(108, 92, 231, 0.1); /* Обновленная тень */
    --transition: all 0.3s ease;
    --section-padding: 80px 0;
}

/* Global Styles */
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none"/><g fill="%236c5ce7" fill-opacity="0.03"><circle cx="10" cy="10" r="1"/><circle cx="30" cy="10" r="1"/><circle cx="50" cy="10" r="1"/><circle cx="70" cy="10" r="1"/><circle cx="90" cy="10" r="1"/><circle cx="10" cy="30" r="1"/><circle cx="30" cy="30" r="1"/><circle cx="50" cy="30" r="1"/><circle cx="70" cy="30" r="1"/><circle cx="90" cy="30" r="1"/><circle cx="10" cy="50" r="1"/><circle cx="30" cy="50" r="1"/><circle cx="50" cy="50" r="1"/><circle cx="70" cy="50" r="1"/><circle cx="90" cy="50" r="1"/><circle cx="10" cy="70" r="1"/><circle cx="30" cy="70" r="1"/><circle cx="50" cy="70" r="1"/><circle cx="70" cy="70" r="1"/><circle cx="90" cy="70" r="1"/><circle cx="10" cy="90" r="1"/><circle cx="30" cy="90" r="1"/><circle cx="50" cy="90" r="1"/><circle cx="70" cy="90" r="1"/><circle cx="90" cy="90" r="1"/></g></svg>');
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

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

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

/* Новый дизайн кнопок */
.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
    border-radius: 30px;
}

/* Кнопки на главной странице */
.hero-btn {
    min-width: 180px;
    margin: 5px;
    border: none;
}

/* Основная кнопка - фиолетовая с белым текстом */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Контурная кнопка - белая с фиолетовым текстом */
.btn-outline {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.btn-outline:hover::before {
    opacity: 1;
}

/* Кнопки на темном фоне */
.hero .btn-primary,
.page-hero .btn-primary,
.cta-section .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover,
.page-hero .btn-primary:hover,
.cta-section .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.hero .btn-outline,
.page-hero .btn-outline,
.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.cta-section .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Эффект при клике */
.btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Мобильные стили */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 25px;
    }
    
    .hero-buttons .btn {
        min-width: 200px;
        margin: 0;
    }
    
    /* Улучшение контрастности на мобильных */
    .hero .btn-primary {
        background-color: rgba(255, 255, 255, 0.15);
        color: white;
        border: 2px solid white;
    }
    
    .hero .btn-outline {
        background-color: white;
        color: var(--primary-color);
        border: 2px solid white;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-buttons .btn {
        min-width: 180px;
    }
    
    .cta-section .btn {
        min-width: 150px;
    }
    
    /* Дополнительный контраст для очень маленьких экранов */
    .hero .btn-primary {
        background-color: rgba(255, 255, 255, 0.2);
    }
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 5px 0;
}

header.scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 100px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(108, 92, 231, 0.3));
}

header.scrolled .logo img {
    max-height: 80px; /* Уменьшаем размер при прокрутке, но всё равно крупнее прежнего */
}

.footer-logo img {
    max-height: 105px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(108, 92, 231, 0.3));
}

@media (max-width: 768px) {
    .logo img {
        max-height: 80px;
    }
    
    .footer-logo img {
        max-height: 90px;
    }
}

@media (max-width: 576px) {
    .logo img {
        max-height: 70px;
    }
    
    .footer-logo img {
        max-height: 75px;
    }
}

/* Эффект при наведении на логотип */
.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(108, 92, 231, 0.5));
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.main-nav ul li {
    margin: 0;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    font-size: 15px;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav ul li a:hover:after,
.main-nav ul li a.active:after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(72, 52, 212, 0.95) 0%, rgba(108, 92, 231, 0.95) 100%);
    position: relative;
    color: #fff;
    padding: 120px 0 170px;
    overflow: hidden;
    animation: gradientAnimation 15s ease infinite;
    background-size: 300% 300%;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Glowing orbs in background */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 15%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,122.7C96,149,192,203,288,208C384,213,480,171,576,160C672,149,768,171,864,176C960,181,1056,171,1152,186.7C1248,203,1344,245,1392,266.7L1440,288L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
    animation: waveAnimation 10s linear infinite;
}

@keyframes waveAnimation {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-2%) translateY(1%);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Animated particles background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Add subtle pulse effect to hero */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    70% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Floating elements */
.floating {
    animation: floating 5s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.animated-title {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.animated-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
    animation: titleUnderline 3s ease-in-out infinite;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
    padding: 8px 0;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.2);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.info-item:hover .info-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.info-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-color);
}

.info-text p {
    font-size: 16px;
    margin: 0;
    color: var(--text-color-secondary);
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(108, 92, 231, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-form h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.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;
    font-weight: 500;
    color: var(--text-color);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: all 0.3s;
    background-color: #f9f9ff;
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s;
    background-color: var(--primary-color);
    color: white;
    border: none;
    text-align: center;
    display: block;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    margin-top: 10px;
}

.contact-form .btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

.map-section {
    padding: 50px 0;
    position: relative;
    background-color: #fafafa;
}

.map-section .section-title {
    margin-bottom: 30px;
    text-align: center;
}

/* Улучшение адаптивности карты */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Call to Action */
.cta-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    z-index: 1;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none"/><g fill="%23ffffff" fill-opacity="0.05"><circle cx="10" cy="10" r="1.5"/><circle cx="30" cy="10" r="1.5"/><circle cx="50" cy="10" r="1.5"/><circle cx="70" cy="10" r="1.5"/><circle cx="90" cy="10" r="1.5"/><circle cx="10" cy="30" r="1.5"/><circle cx="30" cy="30" r="1.5"/><circle cx="50" cy="30" r="1.5"/><circle cx="70" cy="30" r="1.5"/><circle cx="90" cy="30" r="1.5"/><circle cx="10" cy="50" r="1.5"/><circle cx="30" cy="50" r="1.5"/><circle cx="50" cy="50" r="1.5"/><circle cx="70" cy="50" r="1.5"/><circle cx="90" cy="50" r="1.5"/><circle cx="10" cy="70" r="1.5"/><circle cx="30" cy="70" r="1.5"/><circle cx="50" cy="70" r="1.5"/><circle cx="70" cy="70" r="1.5"/><circle cx="90" cy="70" r="1.5"/><circle cx="10" cy="90" r="1.5"/><circle cx="30" cy="90" r="1.5"/><circle cx="50" cy="90" r="1.5"/><circle cx="70" cy="90" r="1.5"/><circle cx="90" cy="90" r="1.5"/></g></svg>');
    opacity: 0.5;
    z-index: -1;
}

.cta-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(108, 92, 231, 0.8) 0%, rgba(90, 75, 205, 0.8) 100%);
    z-index: -2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s;
}

.cta-section h2, .cta-section p, .cta-section a {
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #f5f5f5;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #eaeaea;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.footer-logo img {
    height: 80px; /* Увеличиваем размер логотипа в футере */
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2)); /* Добавляем тень для лучшей видимости */
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 3px 8px rgba(108, 92, 231, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.03);
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(108, 92, 231, 0.1);
    background-color: white;
}

.contact-info i {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info:hover {
    color: white;
}

.contact-info:hover i {
    background-color: white;
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

.copyright {
    color: #777;
    margin: 0;
}

/* Media Queries */
@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }
    
    .header-inner {
        padding: 10px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid, 
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 20px rgba(108, 92, 231, 0.1);
        z-index: 100;
        padding: 20px;
        overflow-y: auto;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
        animation: fadeInDown 0.3s ease forwards;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .main-nav ul li {
        margin: 0;
        text-align: center;
    }
    
    .main-nav ul li a {
        font-size: 16px;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid rgba(108, 92, 231, 0.1);
        transition: all 0.3s ease;
    }
    
    .main-nav ul li a:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }
    
    .mobile-menu-toggle {
        display: flex;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        transform: scale(1.1);
    }
    
    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .partner-item {
        height: 140px;
        padding: 15px;
    }
    
    .partner-logo img {
        max-width: 75%;
        max-height: 75%;
    }
    
    .map-section {
        padding: 40px 0;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .values-grid, 
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .partner-item {
        height: 120px;
        padding: 12px;
    }
    
    .review-card {
        height: auto;
    }
    
    .review-content {
        padding: 20px;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .partner-logo img {
        max-width: 80%;
        max-height: 80%;
    }
    
    .map-section {
        padding: 35px 0;
    }
    
    .map-section .section-title {
        margin-bottom: 20px;
        font-size: 24px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .partner-item {
        height: 100px;
        padding: 10px;
    }
    
    .page-hero h1 {
        font-size: 26px;
    }
    
    .contact-form button.btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .footer-logo .logo-text {
        font-size: 28px;
    }
    
    .contact-info h2, 
    .contact-form h2 {
        font-size: 20px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .partner-logo img {
        max-width: 85%;
        max-height: 85%;
    }
    
    .map-section {
        padding: 30px 0;
    }
    
    .map-section .section-title {
        margin-bottom: 15px;
        font-size: 22px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.partner-item {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.03) 0%, rgba(72, 52, 212, 0.05) 100%);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    height: 160px;
    border: 1px solid rgba(108, 92, 231, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none"/><g fill="%236c5ce7" fill-opacity="0.02"><circle cx="10" cy="10" r="1"/><circle cx="30" cy="10" r="1"/><circle cx="50" cy="10" r="1"/><circle cx="70" cy="10" r="1"/><circle cx="90" cy="10" r="1"/><circle cx="10" cy="30" r="1"/><circle cx="30" cy="30" r="1"/><circle cx="50" cy="30" r="1"/><circle cx="70" cy="30" r="1"/><circle cx="90" cy="30" r="1"/><circle cx="10" cy="50" r="1"/><circle cx="30" cy="50" r="1"/><circle cx="50" cy="50" r="1"/><circle cx="70" cy="50" r="1"/><circle cx="90" cy="50" r="1"/><circle cx="10" cy="70" r="1"/><circle cx="30" cy="70" r="1"/><circle cx="50" cy="70" r="1"/><circle cx="70" cy="70" r="1"/><circle cx="90" cy="70" r="1"/><circle cx="10" cy="90" r="1"/><circle cx="30" cy="90" r="1"/><circle cx="50" cy="90" r="1"/><circle cx="70" cy="90" r="1"/><circle cx="90" cy="90" r="1"/></g></svg>');
    opacity: 0.5;
    z-index: 0;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.15);
    border-color: var(--primary-color);
}

.partner-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.partner-logo img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.partner-item:hover .partner-logo img {
    transform: scale(1.1);
}

.partners-preview {
    padding: var(--section-padding);
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.03) 0%, rgba(72, 52, 212, 0.05) 100%);
    position: relative;
}

.partners-preview .btn {
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2);
}

.partners-preview .btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.partners-preview .btn-primary:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: var(--text-color);
}

.services-preview {
    padding: var(--section-padding);
    background-color: var(--very-light-green);
    position: relative;
}

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

.service-item {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(108, 92, 231, 0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.15);
    border-color: rgba(108, 92, 231, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-green);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 28px;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-item p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.6;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-section {
        padding: 40px 0;
    }
    
    .map-section .section-title {
        margin-bottom: 20px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-content {
        gap: 25px;
    }
    
    .contact-info {
        padding: 25px;
        gap: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .map-section {
        padding: 35px 0;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .info-text h3 {
        font-size: 17px;
    }
    
    .info-text p {
        font-size: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 10px;
        font-size: 15px;
    }
    
    .form-group label {
        font-size: 15px;
    }
    
    .contact-form h2, 
    .contact-info h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .contact-form .btn {
        padding: 12px;
        font-size: 16px;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .cta-section .btn-primary {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 25px 0;
    }
    
    .contact-content {
        gap: 20px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .map-section {
        padding: 30px 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .info-item {
        gap: 15px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .info-text h3 {
        font-size: 16px;
    }
    
    .info-text p {
        font-size: 14px;
    }
    
    .contact-form .btn {
        padding: 12px;
        font-size: 15px;
    }
    
    .cta-section {
        padding: 35px 0;
    }
    
    .cta-section h2 {
        font-size: 22px;
    }
    
    .cta-section p {
        font-size: 14px;
    }
    
    .cta-section .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Блокировка прокрутки при открытом меню */
body.menu-open {
    overflow: hidden;
}

/* Улучшение стилей мобильного меню */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 20px rgba(108, 92, 231, 0.1);
        z-index: 100;
        padding: 20px;
        overflow-y: auto;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
        animation: fadeInDown 0.3s ease forwards;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .main-nav ul li {
        margin: 0;
        text-align: center;
    }
    
    .main-nav ul li a {
        font-size: 16px;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid rgba(108, 92, 231, 0.1);
        transition: all 0.3s ease;
    }
    
    .main-nav ul li a:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }
    
    .mobile-menu-toggle {
        display: flex;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        transform: scale(1.1);
    }
    
    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Улучшение адаптивности для партнеров */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .partner-item {
        height: 140px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-item {
        height: 120px;
        padding: 15px;
    }
    
    .partner-logo img {
        max-width: 80%;
        max-height: 80%;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .partner-item {
        height: 100px;
        padding: 10px;
    }
    
    .partner-logo img {
        max-width: 85%;
        max-height: 85%;
    }
}

/* Стили для выделения формы контактов */
.highlight-form {
    animation: highlightForm 2s ease-in-out;
}

@keyframes highlightForm {
    0% { box-shadow: 0 0 0 rgba(108, 92, 231, 0.1); }
    50% { box-shadow: 0 0 20px rgba(108, 92, 231, 0.5); }
    100% { box-shadow: var(--box-shadow); }
}

/* Стили для сообщения об успешной отправке */
.success-message {
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    color: #2c3e50;
    padding: 15px;
    margin-top: 20px;
    border-radius: var(--border-radius);
    font-size: 16px;
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .success-message {
        padding: 12px;
        font-size: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .success-message {
        padding: 10px;
        font-size: 14px;
        margin-top: 12px;
    }
}

/* Улучшение адаптивности для мобильных устройств */
@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }
    
    body {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Исправление стилей для мобильной навигации */
    .main-nav.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
        animation: fadeInDown 0.3s ease forwards;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Улучшение контрастности кнопок */
    .btn {
        padding: 10px 18px;
        font-size: 14px;
        border-width: 2px;
        text-shadow: none;
    }
    
    .btn-primary {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
    }
    
    .btn-outline {
        background-color: rgba(255, 255, 255, 0.95);
        color: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    /* Выравнивание иконок на странице контактов */
    .info-item {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 15px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .contact-form .form-row {
        display: block;
        margin-bottom: 0;
    }
    
    .contact-form .form-group {
        margin-bottom: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    body {
        font-size: 14px;
    }
    
    /* Улучшение отображения кнопок */
    .btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 100px;
        text-align: center;
    }
    
    .hero-buttons .btn,
    .cta-section .btn {
        min-width: 120px;
    }
    
    /* Улучшение контрастности кнопок */
    .btn-primary, 
    .cta-section .btn-primary {
        background-color: var(--primary-color);
        color: white;
        border: none;
        font-weight: 700;
    }

    .btn-outline,
    .hero .btn-outline {
        background-color: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        font-weight: 700;
    }

    /* Исправление адаптивности на Galaxy Z Fold */
    @media (max-width: 420px) {
        .hero-buttons .btn.hero-btn,
        .cta-section .btn.cta-btn {
            width: 100%;
            font-size: 13px;
            padding: 10px;
        }
    }
}

/* Исправление контрастности кнопок на темном фоне */
.hero .btn-outline,
.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    font-weight: 600;
}

.hero .btn-primary {
    background-color: transparent;
    color: white;
    border-color: white;
    font-weight: 600;
}

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

.hero .btn-outline:hover,
.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Улучшение формы контактов */
.contact-form .form-row {
    display: block;
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--border-radius);
    font-size: 15px;
    background-color: #f9f9ff;
    color: var(--text-color);
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    background-color: #fff;
}

/* Выравнивание иконок на странице контактов */
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
    padding: 8px 0;
    margin-bottom: 10px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.2);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

/* Эффекты наведения для кнопок */
.hero .btn-primary:hover,
.page-hero .btn-primary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Анимация для кнопок */
.btn {
    transition: all 0.3s ease;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* Улучшение контрастности на мобильных устройствах */
@media (max-width: 576px) {
    .hero .btn-primary {
        background-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    
    .hero .btn-outline {
        background-color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    
    .cta-section .btn-primary {
        background-color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
}

/* Стили для специальных типов кнопок */
.cta-btn {
    min-width: 160px;
    font-weight: 700;
    padding: 14px 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 600;
    border: none;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.25);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.35);
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
}

/* Мобильные стили для специальных кнопок */
@media (max-width: 768px) {
    .cta-btn {
        min-width: 140px;
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .form-btn {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cta-btn {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .form-btn {
        padding: 10px;
        font-size: 13px;
    }

    /* Сокращаем текст кнопок на мобильных устройствах */
    .hero-buttons .btn.hero-btn,
    .cta-section .btn.cta-btn {
        min-width: 100px;
        width: 80%;
        margin: 5px auto;
        font-size: 14px;
        padding: 12px 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    }

    /* Увеличиваем контрастность и улучшаем видимость */
    .btn-primary, 
    .cta-section .btn-primary {
        background-color: var(--primary-color);
        color: white;
        border: none;
        font-weight: 700;
    }

    .btn-outline,
    .hero .btn-outline {
        background-color: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        font-weight: 700;
    }

    /* Исправление адаптивности на Galaxy Z Fold */
    @media (max-width: 420px) {
        .hero-buttons .btn.hero-btn,
        .cta-section .btn.cta-btn {
            width: 100%;
            font-size: 13px;
            padding: 10px;
        }
    }
}

/* Enhanced particle effects */
.particle {
    position: absolute;
    display: block;
    background-color: rgba(255, 255, 255, 0.2);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: particleAnimation 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes particleAnimation {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    50% {
        transform: translateY(-100px) translateX(100px) rotate(180deg);
        opacity: 0.5;
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 1;
        border-radius: 0;
    }
}

/* Make some particles move differently */
.particle:nth-child(3n) {
    animation-duration: 20s;
    animation-name: particleAnimation2;
}

.particle:nth-child(3n+1) {
    animation-duration: 25s;
    animation-name: particleAnimation3;
}

@keyframes particleAnimation2 {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-150px) translateX(-100px) scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes particleAnimation3 {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-50px) translateX(150px) scale(1.2) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translateY(100px) translateX(-50px) scale(0.8) rotate(240deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0) translateX(0) scale(1) rotate(360deg);
        opacity: 0.7;
    }
}

@keyframes titleUnderline {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hero p.floating {
    animation-duration: 6s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.hero-buttons .btn.floating {
    animation-duration: 4s;
    animation-delay: 0.5s;
}

.intro {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    z-index: 3;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

/* About page specific styles */
.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.values-grid, .expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item, .expertise-item {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover, .expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 77, 110, 0.1);
}

.value-icon, .expertise-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-green);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 28px;
    transition: var(--transition);
}

.value-item:hover .value-icon, .expertise-item:hover .expertise-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Additional styles for responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }

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

    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }

    .logo-text {
        font-size: 28px;
    }
    
    .footer-logo .logo-text {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-item {
        height: 150px;
        padding: 15px;
    }
}

/* Page Hero Section */
.page-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(72, 52, 212, 0.95) 0%, rgba(108, 92, 231, 0.95) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    animation: gradientAnimation 15s ease infinite;
    background-size: 300% 300%;
}

/* Add animated background to page-hero just like hero section */
.page-hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 15%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,122.7C96,149,192,203,288,208C384,213,480,171,576,160C672,149,768,171,864,176C960,181,1056,171,1152,186.7C1248,203,1344,245,1392,266.7L1440,288L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
    animation: waveAnimation 10s linear infinite;
}

.page-hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-hero h1, .page-hero p {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.page-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.page-hero p.floating {
    animation-duration: 6s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: #f9f9ff;
    position: relative;
}

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

.client-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.client-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(72, 52, 212, 0.05) 0%, rgba(108, 92, 231, 0.05) 100%);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.client-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.15);
}

.client-item:hover:before {
    opacity: 1;
}

.client-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(70%);
    transition: var(--transition);
    opacity: 0.8;
}

.client-item:hover .client-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .client-item {
        height: 160px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .client-item {
        height: 150px;
    }
    
    .client-logo img {
        max-width: 90%;
        max-height: 90%;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-item {
        height: 140px;
        padding: 15px;
    }
    
    .client-logo img {
        max-width: 85%;
        max-height: 85%;
    }
} 

/* Mission Section */
.about-mission {
    padding: 80px 0;
    background-color: #f9f9ff;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-text p {
    font-size: 22px;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 500;
}

/* Partners Preview Section */
.about-partners {
    padding: 80px 0;
    background-color: #fff;
}

.partners-preview {
    margin-top: 50px;
}

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

.partner-preview-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.15);
}

.partner-preview-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(70%);
    transition: var(--transition);
    opacity: 0.8;
}

.partner-preview-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-preview-action {
    text-align: center;
    margin-top: 20px;
}

/* Experience Section */
.about-experience {
    padding: 80px 0;
    background-color: #f9f9ff;
}

.experience-content {
    max-width: 1000px;
    margin: 40px auto 0;
}

.experience-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

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

.stat-label {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

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

.experience-text p {
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .partners-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .mission-text p {
        font-size: 18px;
    }
    
    .experience-stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .partners-preview-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    
    .mission-text p {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

/* Стили для секции с ключевыми показателями */
.key-metrics {
    padding: var(--section-padding);
    background-color: var(--very-light-green);
    position: relative;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.metric-item {
    text-align: center;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.15);
}

.metric-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.metric-item:hover:before {
    height: 8px;
}

.metric-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

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

.metrics-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .metric-number {
        font-size: 42px;
    }
    
    .metric-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
        margin: 40px auto;
    }
    
    .metric-item {
        padding: 30px 20px;
    }
    
    .metrics-text p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .metric-number {
        font-size: 38px;
    }
    
    .metric-label {
        font-size: 15px;
    }
    
    .metrics-text p {
        font-size: 15px;
    }
}

/* Стили для секции с преимуществами */
.advantages-section {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0 40px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    background-color: white;
    border: 1px solid rgba(108, 92, 231, 0.1);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.05);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0.05) 100%);
    color: var(--primary-color);
    font-size: 30px;
    transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(108, 92, 231, 0.1) 100%);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.1);
}

.advantage-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.advantage-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

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

.advantages-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
        margin: 40px auto;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
    
    .advantage-item h3 {
        font-size: 18px;
    }
    
    .advantages-text p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .advantage-item {
        padding: 25px 15px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .advantage-item h3 {
        font-size: 17px;
    }
    
    .advantage-item p {
        font-size: 14px;
    }
    
    .advantages-text p {
        font-size: 15px;
    }
}