/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f7fc;
    color: #333;
    line-height: 1.6;
}

header {
    background: #003366;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Sections */
.about-section, .mission-vision, .why-choose-us, .team-section, .contact-section {
    padding: 50px 20px;
    text-align: center;
}

/* Flex container */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-section .content, .about-section .image {
    max-width: 450px;
}

.about-section .image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h2 {
    color: #003366;
    margin-bottom: 20px;
}

/* Mission & Vision */
.mission-vision {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mission-vision .box {
    background: #e9f0fa;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-vision .box:hover {
    transform: translateY(-10px);
}

/* Why Choose Us */
.why-choose-us ul {
    list-style: none;
    padding: 0;
}

.why-choose-us li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Team Section */
.team-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-section input, .contact-section textarea {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-section button {
    padding: 12px 30px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-section button:hover {
    background: #002244;
}

/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 0.9rem;
}
