html {
    scroll-behavior: smooth;
}
/* Базовые стили */
body {
    font-family: 'Inter', sans-serif;
}

/* Фоновые изображения */
.bg-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
}

.gradient-bg {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.8) 0%, rgba(75, 0, 130, 0.9) 100%);
}

/* Корпоративные цвета */
.company-color {
    background-color: rgba(75, 0, 130, 0.7);
}

.company-color-solid {
    background-color: rgb(75, 0, 130);
}

.company-text {
    color: rgb(75, 0, 130);
}

/* Логотипы */
.logo-img {
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
}

.logo-img-hero {
    filter: invert(1) brightness(1.2);
    mix-blend-mode: screen;
    transition: all 0.3s ease;
}

.logo-footer {
    filter: invert(1) brightness(1.2);
    mix-blend-mode: screen;
    transition: all 0.3s ease;
}

/* Анимации */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Модальное окно сертификатов */
.certificate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.certificate-modal.active {
    display: flex;
}

.certificate-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.certificate-modal img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificate-clickable:hover {
    opacity: 0.8;
}

/* Стили для политики конфиденциальности */
.content-section {
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(75, 0, 130);
}

.content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #374151;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

.content-section ul,
.content-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #6b7280;
}

.highlight-box {
    background-color: #f8fafc;
    border-left: 4px solid rgb(75, 0, 130);
    padding: 1rem;
    margin: 1.5rem 0;
}

/* Фокус для форм */
.focus\:ring-purple-500:focus {
    --tw-ring-color: rgba(75, 0, 130, 0.7);
}