/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
    flex: 1;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
    background-color: #d4ab7a;
    color: white;
}

.cookie-buttons .btn-primary:hover {
    background-color: #c19a63;
}

.cookie-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Header */
.header {
    background-color: #2c2c2c;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo h1 {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-text h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.hero-text h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 30px;
    color: #555;
}

.hero-text p {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.7;
}

.cta-button {
    background-color: #d4ab7a;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.cta-button:hover {
    background-color: #c19a63;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

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

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background-color: white;
}

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

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.philosophy-text h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.philosophy-text h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #555;
}

.philosophy-text p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.7;
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.courses h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c2c2c;
}

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

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

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.course-card p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.course-btn {
    background-color: #d4ab7a;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.course-btn:hover {
    background-color: #c19a63;
    transform: translateY(-2px);
}

/* Training Section */
.training {
    padding: 100px 0;
    background-color: white;
}

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

.training-text h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.training-text h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #555;
}

.training-text p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.training-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.faq-intro {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.6;
}

/* Registration Section */
.registration {
    padding: 100px 0;
    background-color: white;
}

.registration h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.registration h3 {
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 30px;
    color: #555;
}

.registration > p {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.registration-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4ab7a;
}

.submit-btn {
    width: 100%;
    background-color: #d4ab7a;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.submit-btn:hover {
    background-color: #c19a63;
    transform: translateY(-2px);
}

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

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

.footer-left h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4ab7a;
}

.contact-info p {
    margin-bottom: 10px;
    color: #ccc;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2em;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .training-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .courses h2,
    .faq h2,
    .registration h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h2 {
        font-size: 1.8em;
    }
    
    .hero-text h3 {
        font-size: 1.1em;
    }
    
    .course-card,
    .faq-item {
        padding: 25px;
    }
    
    .courses,
    .philosophy,
    .training,
    .faq,
    .registration {
        padding: 60px 0;
    }
    
    .cookie-content {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */