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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Кнопки */
.btn-primary {
    background: linear-gradient(135deg, #ff9500, #ff7a00);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.cookie-text h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-text p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h2 {
    color: #4a90e2;
    font-size: 28px;
    font-weight: bold;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #4a90e2;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-text p:first-of-type {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-text .btn-primary {
    margin-top: 30px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Prinzipien Section */
.prinzipien {
    padding: 80px 0;
    background: #f8f9fa;
}

.prinzipien h2 {
    text-align: center;
    font-size: 36px;
    color: #4a90e2;
    margin-bottom: 60px;
}

.prinzipien-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.prinzip-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4a90e2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.prinzip-number.green {
    background: #28a745;
}

.prinzip-number.orange {
    background: #ff9500;
}

.prinzip-number.pink {
    background: #e91e63;
}

.prinzip-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.prinzip-item p {
    color: #666;
    font-size: 16px;
}

/* Kurse Section */
.kurse {
    padding: 80px 0;
}

.kurse h2 {
    text-align: center;
    font-size: 36px;
    color: #4a90e2;
    margin-bottom: 60px;
}

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

.kurs-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.kurs-card:hover {
    transform: translateY(-5px);
}

.kurs-image {
    height: 200px;
    overflow: hidden;
}

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

.kurs-content {
    padding: 25px;
}

.kurs-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.kurs-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.kurs-price {
    font-size: 18px;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 20px;
}

/* Zahlen Section */
.zahlen {
    padding: 80px 0;
    background: #f8f9fa;
}

.zahlen h2 {
    text-align: center;
    font-size: 36px;
    color: #4a90e2;
    margin-bottom: 60px;
}

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

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

.zahlen-number {
    font-size: 48px;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 10px;
}

.zahlen-text {
    font-size: 16px;
    color: #666;
}

.zahlen-image {
    text-align: center;
}

.zahlen-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
}

/* Über uns Section */
.ueber-uns {
    padding: 80px 0;
}

.ueber-uns-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ueber-uns-image img {
    width: 100%;
    border-radius: 15px;
}

.ueber-uns-text h2 {
    font-size: 36px;
    color: #4a90e2;
    margin-bottom: 30px;
}

.ueber-uns-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.philosophie-box {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.philosophie-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.philosophie-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Kontakt Section */
.kontakt {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
}

.kontakt-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kontakt-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.kontakt-text p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.kontakt-form {
    margin-top: 30px;
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.kontakt-image img {
    width: 100%;
    border-radius: 15px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo h3 {
    color: #4a90e2;
    font-size: 24px;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 50px 20px;
        gap: 20px;
    }
    
    .nav-list a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .prinzipien-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kurse-grid {
        grid-template-columns: 1fr;
    }
    
    .zahlen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .ueber-uns-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .kontakt-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .prinzipien,
    .kurse,
    .zahlen,
    .ueber-uns,
    .kontakt {
        padding: 60px 0;
    }
    
    .zahlen-grid {
        grid-template-columns: 1fr;
    }
    
    .zahlen-number {
        font-size: 36px;
    }
    
    .kontakt-form input,
    .kontakt-form textarea {
        padding: 12px;
        font-size: 14px;
    }
}