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

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

a {
    text-decoration: none;
    color: #145e56;
    transition: color 0.3s;
}

a:hover {
    color: #0d3c37;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

strong {
    font-weight: 600;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #203036;
    font-weight: 700;
}

.section-description {
    max-width: 800px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #4a5a64;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: #226d62;
    color: #fff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #226d62;
    text-decoration: underline;
}

.btn-secondary:hover {
    color: #1a5349;
}

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

.cookie-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.cookie-content h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #333;
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #666;
}

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

.cookie-buttons .btn-primary {
    background-color: #226d62;
}

.cookie-buttons .btn-secondary {
    background-color: transparent;
    text-decoration: none;
}

/* Header */
header {
    background-color: #226d62;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 0.8;
    color: #fff;
}

/* Hero Section */
.hero {
    background-color: #203036;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 48, 54, 0.8);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

/* Stats Section */
.stats {
    padding: 60px 0;
    background-color: #fff;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-item {
    flex: 1;
    padding: 0 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #226d62;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #4a5a64;
    max-width: 250px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #203036;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a5a64;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features .section-title {
    text-align: left;
}

.features .section-description {
    text-align: left;
    margin-left: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #f0f4f3;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #203036;
}

.feature-card p {
    font-size: 1rem;
    color: #4a5a64;
}

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

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.philosophy-text {
    flex: 1.5;
}

.philosophy-image {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #203036;
    line-height: 1.3;
}

.philosophy-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a5a64;
}

.philosophy-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.philosophy-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    font-size: 1.05rem;
    color: #4a5a64;
}

.philosophy-text ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #226d62;
}

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

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

.course-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.course-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: #203036;
}

.course-card p {
    padding: 0 20px;
    font-size: 1rem;
    color: #4a5a64;
    flex-grow: 1;
}

.course-info {
    padding: 15px 20px 20px;
    font-size: 0.95rem;
    color: #666;
    border-top: 1px solid #eee;
    margin-top: auto;
}

/* Mindset Section */
.mindset {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.mindset .section-title {
    margin-bottom: 30px;
    max-width: 700px;
}

.mindset-content {
    max-width: 800px;
}

.mindset-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a5a64;
}

.mindset-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.mindset-content ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    font-size: 1.05rem;
    color: #4a5a64;
}

.mindset-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #226d62;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
    background-image: url('./imgs/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #203036;
}

.contact-text p {
    font-size: 1.05rem;
    color: #4a5a64;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #226d62;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
}

/* Footer */
footer {
    background-color: #226d62;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

.footer-links ul li a {
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .philosophy-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .philosophy-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-links {
        margin-bottom: 30px;
    }
    
    nav ul {
        display: none;
    }
    
    .hero {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}