*

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }

        /* =====================================================
           HEADER STYLING
           ===================================================== */
        .main-header {
            background-color: #efefef;
            width: 100%;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            align-items: center;
        }

        .main-logo {
            height: 90px;
            margin-right: 50px;
        }

        .nav-bar ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-bar ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 900;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nav-bar ul li a:hover,
        .nav-bar ul li a.active {
            color: #1a1a8c;
        }

        .bottom-navy-line {
            height: 7px;
            background-color: #1e1e50;
        }


/* ================= MAIN CONTENT ================= */
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.page-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

/* Leadership Card */
.leadership-card {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-box {
    flex-shrink: 0;
}

.image-box img {
    width: 220px;
    height: auto;
    border: 3px solid #3498db;
    border-radius: 4px;
    display: block;
}

.content-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #000;
}

.content-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
}

.signature p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.signature .name {
    font-weight: bold;
    color: #000;
    margin-top: 5px;
}

/* ================= FOOTER ================= */
.footer {
    background-color: #06061a;
    color: #ffffff;
    padding: 60px 10% 20px 10%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 2;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column ul li a {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a:hover {
    color: #fff;
}

.social-links {
    margin-top: 25px;
}

.icons {
    display: flex;
    gap: 10px;
}

.icon-box {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 12px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #333;
    margin: 40px 0 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .leadership-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .image-box img {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .nav-bar ul {
        justify-content: center;
        gap: 15px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}