/* Контейнеры и общие стили */
.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.section-subtitle {
    font-size: 1.2em;
    color: var(--text-secondary);
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        box-shadow:
            0 0 20px rgba(16, 185, 129, 0.8),
            0 0 30px rgba(16, 185, 129, 0.6),
            0 0 40px rgba(16, 185, 129, 0.4);
    }
    100% {
        opacity: 1;
        box-shadow:
            0 0 30px rgba(16, 185, 129, 1),
            0 0 40px rgba(16, 185, 129, 0.8),
            0 0 50px rgba(16, 185, 129, 0.6);
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.7em;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}