/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

body {
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.7;
}

/* ================= LINKS ================= */
a {
    text-decoration: none;
    color: inherit;
}

/* ================= HEADER / NAVBAR ================= */
header {
    background-color: #111;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #f39c12;
    font-size: 28px;
    font-weight: bold;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-left: 25px;
}

.menu li a {
    color: #ffffff;
    font-size: 16px;
    transition: 0.3s;
}

.menu li a:hover,
.menu li a.active {
    color: #f39c12;
}

/* ================= PAGE HEADER ================= */
.page-header {
    height: 250px;
    background: url("https://images.pexels.com/photos/3184338/pexels-photo-3184338.jpeg?auto=compress&cs=tinysrgb&h=400") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
}

/* ================= ABOUT INTRO ================= */
.about-section {
    padding: 50px 20px;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #111;
    margin-bottom: 15px;
    font-size: 24px;
}

.about-text p {
    margin-bottom: 12px;
    font-size: 16px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
}

/* ================= MISSION SECTION ================= */
.mission-section {
    background: #feaa56;
    padding: 50px 20px;
}

.mission-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #111;
}

.mission-section p {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    margin-bottom: 40px;
}

.mission-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.mission-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.mission-box h3 {
    margin-bottom: 10px;
    color: #f39c12;
    font-size: 18px;
}

/* ================= WHY CHOOSE US ================= */
.why-us {
    padding: 50px 20px;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.why-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.why-card h3 {
    margin-bottom: 10px;
    color: #f39c12;
    font-size: 16px;
}

/* ================= TEAM SECTION ================= */
.team-section {
    background: #f9f9f9;
    padding: 50px 20px;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    justify-items: center;
}

.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.team-card img {
    width: 100%;
    max-width: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-card h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.team-card p {
    font-size: 14px;
    color: #555;
}

/* ================= FOOTER ================= */
footer {
    background: #111;
    color: #ddd;
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.footer-box h3 {
    margin-bottom: 12px;
    color: #f39c12;
}

.footer-box p,
.footer-box ul,
.footer-box li {
    font-size: 14px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box li a {
    color: #ddd;
    transition: 0.3s;
}

.footer-box li a:hover {
    color: #f39c12;
}

.copy {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {
    .about-flex {
        flex-direction: column;
    }
    .mission-boxes,
    .why-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}
