:root {
    /* Основная цветовая схема - Раздельно-дополнительная */
    --primary-color: #4A6FE3; /* Основной синий */
    --primary-dark: #2A4DBA; /* Темно-синий */
    --primary-light: #7A95F5; /* Светло-синий */
    --secondary-color: #E34A6F; /* Дополнительный розовый */
    --secondary-dark: #BA2A4D; /* Темно-розовый */
    --secondary-light: #F57A95; /* Светло-розовый */
    --accent-color: #6FE34A; /* Акцентный зеленый */
    --accent-dark: #4DBA2A; /* Темно-зеленый */
    --accent-light: #95F57A; /* Светло-зеленый */
    
    /* Нейтральные цвета */
    --dark: #18243A; /* Темно-синий почти черный */
    --gray-dark: #4A4A57; /* Темно-серый */
    --gray-medium: #7A7A8C; /* Средне-серый */
    --gray-light: #E0E0E6; /* Светло-серый */
    --light: #F9F9FB; /* Почти белый */
    
    /* Системные цвета */
    --success: #2ECC71; /* Зеленый успешно */
    --warning: #F1C40F; /* Желтый предупреждение */
    --error: #E74C3C; /* Красный ошибка */
    --info: #3498DB; /* Синий информация */
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    --gradient-hero: linear-gradient(135deg, rgba(26, 32, 53, 0.7), rgba(42, 77, 186, 0.7));
    
    /* Тени */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    
    /* Радиусы */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-round: 50%;
    
    /* Размеры */
    --header-height: 80px;
    --container-max-width: 1200px;
    --container-padding: 20px;
    
    /* Анимации */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin: 0 0 1.5rem 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* Утилиты */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-medium);
    font-size: 1.2rem;
}

/* Кнопки */
.btn, 
button,
input[type='submit'] {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-medium);
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    background: var(--primary-color);
    color: white;
}

.btn:hover, 
button:hover,
input[type='submit']:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--primary-dark);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

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

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

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

.btn-accent:hover {
    background: var(--accent-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo a {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-list li {
    margin: 0 0 0 2rem;
}

.nav-list a {
    color: var(--gray-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

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

.hero-content h1 {
    color: #FFFFFF;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.progress-container {
    margin-top: 2rem;
}

.progress-item {
    margin-bottom: 1.5rem;
}

.progress-item span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.progress-bar {
    height: 10px;
    background-color: var(--gray-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 1.5s ease-in-out;
    border-radius: var(--radius-sm);
}

.progress-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    margin-bottom: 1.5rem;
}

.card-content .btn {
    align-self: center;
    margin-top: auto;
}

/* Case Studies */
.case-studies-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.case-study {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.case-study:nth-child(even) {
    flex-direction: row-reverse;
}

.case-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.case-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.case-study:hover .case-image img {
    transform: scale(1.02);
}

.case-content {
    flex: 1;
}

.case-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Success Stories */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.testimonial-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: var(--radius-round);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex-grow: 1;
}

.quote {
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary-light);
    font-family: 'Georgia', serif;
}

.author h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.author p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.prev-testimonial span,
.next-testimonial span {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: var(--primary-color);
}

.prev-testimonial:hover span,
.next-testimonial:hover span {
    color: white;
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card:hover {
    transform: translateY(-10px);
}

.resource-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-round);
    overflow: hidden;
}

.resource-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.resource-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.resource-link:hover {
    color: var(--secondary-dark);
}

.resource-link:hover::after {
    transform: translateX(5px);
}

/* Community Section */
.community {
    background-color: var(--light);
}

.community-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.community-text {
    flex: 1;
}

.community-text h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.community-stats {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.community-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.community-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.community-content:hover .community-image img {
    transform: scale(1.02);
}

/* Sustainability Section */
.sustainability {
    background-color: var(--light);
}

.sustainability-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.sustainability-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sustainability-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.sustainability-content:hover .sustainability-image img {
    transform: scale(1.02);
}

.sustainability-text {
    flex: 1;
}

.sustainability-text h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.sustainability-badges {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.badge {
    text-align: center;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    flex: 1;
    margin: 0 0.5rem;
}

.badge span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.badge p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Accolades Section */
.accolades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.accolade-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accolade-card:hover {
    transform: translateY(-10px);
}

.accolade-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-round);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accolade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accolade-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background-color: var(--light);
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info ul {
    list-style: none;
    margin: 0 0 2rem 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
}

.info-label {
    font-weight: 600;
    min-width: 100px;
    color: var(--gray-dark);
}

.contact-map {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-form-container {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    transition: border var(--transition-fast);
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 5rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--gray-light);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-social h4 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--gray-light);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.social-links a:hover {
    color: white;
}

.newsletter h4 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Rubik', sans-serif;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--gray-medium);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    padding: 2.5rem;
    position: relative;
    animation: modalFadeIn 0.3s ease forwards;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--gray-medium);
    transition: color var(--transition-fast);
}

.close-modal:hover {
    color: var(--secondary-color);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.modal-form .form-group {
    margin-bottom: 1.5rem;
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(24, 36, 58, 0.95);
    color: white;
    z-index: 9999;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex-grow: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--transition-fast);
}

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.cookie-link {
    color: var(--gray-light);
    text-decoration: underline;
}

.cookie-link:hover {
    color: white;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    padding-top: var(--header-height);
}

.success-container {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 90%;
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success);
    border-radius: var(--radius-round);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.success-container h2 {
    color: var(--success);
    margin-bottom: 1.5rem;
}

.success-container p {
    margin-bottom: 2rem;
}

/* Pages (privacy, terms, etc.) */
.page-content {
    padding-top: 150px;
    padding-bottom: 5rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: var(--primary-color);
}

.content-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content,
    .case-study,
    .community-content,
    .sustainability-content,
    .contact-content {
        flex-direction: column;
    }
    
    .case-study:nth-child(even) {
        flex-direction: column;
    }
    
    .community-image,
    .sustainability-image {
        order: -1;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .testimonial-card {
        flex-direction: column;
    }
    
    .community-stats,
    .sustainability-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item,
    .badge {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .mobile-menu-active .nav-list li {
        margin: 0;
    }
    
    .mobile-menu-active .nav-list a {
        display: block;
        padding: 1rem 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}