* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #c5534a;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

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

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: #c5534a;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    background: #c5534a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b04139;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: #fff;
}

.courses h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: left;
}

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

.course-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.course-card.green {
    background: linear-gradient(135deg, #e8f5e8, #d4f4d4);
}

.course-card.purple {
    background: linear-gradient(135deg, #f0e8ff, #e8d4ff);
}

.course-card.yellow {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.course-card.pink {
    background: linear-gradient(135deg, #ffe8f5, #ffd4e8);
}

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

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

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.course-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.course-button {
    background: #c5534a;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
    width: 100%;
}

.course-button:hover {
    background: #b04139;
}

/* Knowledge Section */
.knowledge {
    padding: 80px 0;
    background: #f8f9fa;
}

.knowledge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.knowledge-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.knowledge-text p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.knowledge-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.philosophy {
    background: #c5534a;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
}

.philosophy h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Principles Section */
.principles {
    padding: 80px 0;
    background: #fff;
}

.principles h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.principles-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}

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

.principle-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.principle-card.pink {
    background: linear-gradient(135deg, #ffe8f5, #ffd4e8);
}

.principle-card.yellow {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.principle-card.purple {
    background: linear-gradient(135deg, #f0e8ff, #e8d4ff);
}

.principle-card.green {
    background: linear-gradient(135deg, #e8f5e8, #d4f4d4);
}

.principle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.principle-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.principle-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.principles .cta-button {
    display: block;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8e8eb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-form-section p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    background: #c5534a;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c5534a;
}

.submit-button {
    background: #c5534a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #b04139;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-copyright {
    text-align: left;
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept {
    background: #c5534a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cookie-decline {
    background: #666;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Success Page */
.success-section {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 60vh;
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.success-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.success-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .knowledge-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .knowledge-text h2 {
        font-size: 2rem;
    }
    
    .principles h2 {
        font-size: 2rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .courses h2 {
        font-size: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .success-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .success-text h1 {
        font-size: 2rem;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .knowledge-text h2,
    .principles h2,
    .contact-form-section h2,
    .courses h2 {
        font-size: 1.8rem;
    }
    
    .course-content,
    .principle-card {
        padding: 1rem;
    }
    
    .philosophy {
        padding: 1.5rem;
    }
    
    .success-content h1 {
        font-size: 1.8rem;
    }
    
    .success-content p {
        font-size: 1rem;
    }
}