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

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #2C7A7B;
}

img {
    max-width: 100%;
    height: auto;
}

.faq h2 {
    text-align: center;
}

.main-section h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.thank-section {
    text-align: center;
}

section {
    padding: 4rem 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.primary-btn {
    background-color: #2C7A7B;
    color: white;
}

.primary-btn:hover {
    background-color: #236b6c;
}

/* Cookie Popup */
.cookie-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
}

.cookie-content h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 48%;
}

.cookie-btn.decline {
    background-color: #2C7A7B;
    color: white;
}

.cookie-btn.accept {
    background-color: #2C7A7B;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.9;
}

/* Header */
header {
    background-color: #000;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Hero Section */
.hero {
    background-color: #2C7A7B;
    color: white;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content {
    flex: 1;
    padding: 4rem 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-image {
    flex: 1;
    height: 100%;
}

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

/* About Section */
.about {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
}

.about-image {
    flex: 1;
}

.about-content {
    flex: 1;
    padding: 2rem;
}

/* Statistics Section */
.statistics {
    display: flex;
    background-color: white;
}

.stat-container {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    text-align: left;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #2C7A7B;
}

.stat-image {
    flex: 1;
}

/* Courses Section */
.courses {
    background-color: #f9f9f9;
    text-align: center;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.course-card h3 {
    color: white;
    background-color: #2C7A7B;
    padding: 1rem;
    font-size: 1rem;
}

.course-card p {
    padding: 1rem;
    font-size: 0.9rem;
}

/* Why Us Section */
.why-us {
    display: flex;
    align-items: center;
    background-color: white;
}

.why-us-image {
    flex: 1;
}

.why-us-content {
    flex: 1;
    padding: 2rem;
}

/* Team Section */
.team {
    background-color: #f9f9f9;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.member-info {
    padding: 1.5rem;
    text-align: left;
}

.member-info h3 {
    color: white;
    background-color: #2C7A7B;
    padding: 0.8rem;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.faq-question {
    padding: 1rem;
    background-color: #2C7A7B;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    padding: 1rem;
    background-color: white;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    background-color: #2C7A7B;
    color: white;
    padding: 4rem 2rem;
}

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

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

input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: white;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero, .about, .statistics, .why-us {
        flex-direction: column;
    }
    
    .stat-container {
        flex-direction: column;
    }
    
    .hero-content, .about-content, .why-us-content {
        padding: 2rem;
    }
    
    .hero-image, .about-image, .why-us-image, .stat-image {
        width: 100%;
    }
    
    .course-grid, .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .course-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
}