* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #E85D75;
    --color-secondary: #FFC107;
    --color-mint: #D5F2F0;
    --color-pink: #FFD9D5;
    --color-orange: #F9D78E;
    --color-text: #2D3748;
    --color-text-light: #718096;
    --color-white: #FFFFFF;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --border-radius: 20px;
    --border-radius-small: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.header {
    background: var(--color-mint);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo span {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.nav {
    flex: 1;
}

.mobile-menu-header {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow);
    min-width: 220px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    color: var(--color-text);
}

.dropdown-menu a:hover {
    background: var(--color-mint);
    color: var(--color-primary);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-text);
}

.header-phone img {
    width: 24px;
    height: 24px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    padding: 10px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.hero {
    background: var(--color-mint);
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(232, 93, 117, 0.3);
}

.btn-primary:hover {
    background: #d54862;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 117, 0.4);
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-secondary:hover {
    background: #f0b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section {
    padding: 80px 0;
}

.section-bg-white {
    background: var(--color-white);
}

.section-bg-mint {
    background: var(--color-mint);
}

.section-bg-pink {
    background: var(--color-pink);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-columns img {
    width: 100%;
    border-radius: var(--border-radius);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 50px;
    height: 50px;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.card p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    gap: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--color-text-light);
}

.faq-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-orange);
    border-radius: var(--border-radius-small);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "▼";
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-white);
}

.faq-answer-content {
    padding: 20px 24px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.form-box {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.form-box p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: var(--color-mint);
    border-radius: var(--border-radius-small);
    font-size: 15px;
    color: var(--color-text);
    font-family: var(--font-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--color-primary);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(232, 93, 117, 0.3);
}

.btn-submit:hover {
    background: #d54862;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 117, 0.4);
}

.contact-hero {
    background: var(--color-mint);
    padding: 80px 0;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-top: 40px;
}

.contact-info h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon img {
    width: 24px;
    height: 24px;
}

.contact-item-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.contact-item-text p {
    font-size: 16px;
    color: var(--color-text-light);
}

.contact-map {
    margin-top: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.cta-section {
    background: var(--color-white);
    padding: 80px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.cta-image img {
    width: 100%;
}

.footer {
    background: var(--color-pink);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.footer-about p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 15px;
    color: var(--color-text-light);
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: var(--color-white);
    border-radius: 50px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: #d54862;
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--color-text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(45, 55, 72, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-text-light);
}

.about-hero {
    background: var(--color-mint);
    padding: 80px 0;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.image-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.image-collage img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--color-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 32px;
    height: 32px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.value-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.course-detail-hero {
    background: var(--color-mint);
    padding: 80px 0;
}

.course-detail-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.course-detail-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.course-detail-content p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.course-content {
    max-width: 900px;
    margin: 0 auto;
}

.course-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--color-text);
}

.course-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--color-text);
}

.course-content p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.course-content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 24px;
}

.course-content ul li {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.legal-content .last-updated {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 40px;
    color: var(--color-text);
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 28px;
    color: var(--color-text);
}

.legal-content p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-content code {
    background: var(--color-mint);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--color-text);
}

.legal-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--color-text);
}

.thank-you-page {
    background: var(--color-mint);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thank-you-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.thank-you-content p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.cookie-banner-text p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background: #d54862;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text-light);
}

.cookie-btn-decline:hover {
    border-color: var(--color-text);
    background: var(--color-mint);
}

@media (max-width: 992px) {
    .header-phone {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        padding: 30px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .mobile-menu-header {
        display: block;
        padding: 20px 0 30px;
        border-bottom: 2px solid var(--color-mint);
        margin-bottom: 20px;
    }
    
    .mobile-menu-header span {
        font-size: 24px;
        font-weight: 700;
        color: var(--color-text);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--color-mint);
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--color-mint);
        border-radius: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 400px;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-section {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-content {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .image-collage {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        width: 280px;
        padding: 25px 25px 30px;
    }
    
    .mobile-menu-header {
        padding: 15px 0 25px;
    }
    
    .mobile-menu-header span {
        font-size: 22px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .course-detail-content h1 {
        font-size: 36px;
    }
    
    .course-content h2 {
        font-size: 28px;
    }
    
    .legal-content h1 {
        font-size: 32px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .form-box {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .image-collage {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 320px) {
    .nav {
        width: 260px;
        padding: 20px 20px 25px;
    }
    
    .mobile-menu-header {
        padding: 10px 0 20px;
    }
    
    .mobile-menu-header span {
        font-size: 20px;
    }
    
    .logo span {
        font-size: 20px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .nav-list a {
        font-size: 16px;
    }
}

