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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    color: #8a7555;
    font-weight: normal;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #f9f9f9;
}

.logo {
    color: #8a7555;
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

.apply-btn {
    background-color: #e67e22;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.apply-btn:hover {
    background-color: #d35400;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
}

/* Mission Section */
.mission {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.mission-text p {
    margin-bottom: 1rem;
    color: #555;
}

/* Learning Areas Section */
.learning-areas {
    padding: 5rem 2rem;
}

.learning-modules {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.module {
    flex: 1;
    text-align: left;
}

.module img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.module h3 {
    margin-bottom: 1rem;
    color: #8a7555;
}

.module p {
    color: #555;
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.testimonials {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.testimonial {
    flex: 1;
    text-align: center;
    padding: 1rem;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.author {
    font-weight: bold;
    color: #8a7555;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-image: url('./imgs/8.png');
    background-size: cover;
    background-position: center;
    color: #333;
}

.contact h2, 
.contact .subtitle {
    color: #333;
}

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

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.submit-btn {
    display: block;
    width: fit-content;
    margin: 1rem auto;
    padding: 0.8rem 2rem;
    background-color: #8a7555;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #6d5d44;
}

/* Footer Section */
footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: #e67e22;
    margin-bottom: 1rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: #e67e22;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 900px) {
    .mission-container {
        flex-direction: column;
    }
    
    .learning-modules,
    .testimonials {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}