/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Global Styles */
body {
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #FF6B45;
    text-decoration: none;
}

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

.header-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background-color: #1A2CCC;
    color: white;
    padding: 60px 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 700px;
}

.btn-primary {
    display: inline-block;
    background-color: #FF6B45;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: white;
    color: #FF6B45;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #FF6B45;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

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

/* Hero Image */
.hero-image {
    width: 100%;
    height: 180px;
    background-image: url('./imgs/1.png?v=1');
    background-size: cover;
    background-position: center;
    margin-top: 20px;
}

/* Courses Section */
.courses {
    padding: 60px 0;
}

.section-title {
    font-size: 30px;
    color: #1A2CCC;
    margin-bottom: 40px;
}

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

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

.course-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
}

.course-content {
    padding: 20px;
}

.course-title {
    font-size: 18px;
    color: #FF6B45;
    margin-bottom: 10px;
}

.course-price {
    font-weight: bold;
    margin-bottom: 15px;
}

.course-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-center {
    display: block;
    width: 250px;
    margin: 40px auto 0;
}

/* Philosophy Section */
.philosophy {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.philosophy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-text {
    flex: 1;
    min-width: 300px;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
    background-image: url('./imgs/2.png?v=1');
    background-size: cover;
    background-position: center;
    min-height: 350px;
    border-radius: 10px;
}

.philosophy h2 {
    font-size: 30px;
    color: #1A2CCC;
    margin-bottom: 20px;
}

.philosophy p {
    margin-bottom: 20px;
}

.philosophy-pillars {
    margin: 30px 0;
}

.philosophy-pillars ol {
    padding-left: 20px;
}

.philosophy-pillars li {
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-item h3::after {
    content: "▲";
    font-size: 12px;
}

.faq-item p {
    font-size: 14px;
    display: block;
}

.faq-item.blue {
    background-color: #1A2CCC;
    color: white;
}

.faq-item.pink {
    background-color: #E94E84;
    color: white;
}

.faq-item.orange {
    background-color: #FF9048;
    color: white;
}

.faq-item.light-blue {
    background-color: #4099FF;
    color: white;
}

.faq-item.green {
    background-color: #46D362;
    color: white;
}

.faq-item.coral {
    background-color: #FF6B45;
    color: white;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #1A2CCC;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.contact-info {
    margin-bottom: 30px;
    font-size: 14px;
}

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

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

.form-control {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
}

textarea.form-control {
    height: 120px;
    border-radius: 15px;
    resize: none;
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
}

.copyright {
    color: #777;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    text-align: center;
    z-index: 1000;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-image: url('./imgs/3.png?v=1');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cookie-banner h3 {
    color: #1A2CCC;
    margin-bottom: 15px;
    font-size: 18px;
}

.cookie-banner p {
    margin-bottom: 20px;
    font-size: 14px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .course-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-content {
        flex-direction: column;
    }

    .philosophy-image {
        min-height: 250px;
    }
}