/* ================= GLOBAL ================= */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Latha', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* ================= ADMIN SECTION ================= */
.admin-section {
    width: 85%;
    margin: 25px auto;
}

/* ================= SECTION TITLE ================= */
.section-title {
    background: linear-gradient(135deg, #0066cc, #004fa3);
    color: #fff;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* ================= INFO BOX ================= */
.info-box {
    background: #ffffff;
    border: 2px solid #0066cc;
    padding: 22px 26px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.8;
}

/* Paragraph spacing */
.info-box p {
    margin-bottom: 10px;
}

/* Organization name */
.main-org {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}

/* ================= CONTACT LINE ================= */
.contact-line {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-line .label {
    min-width: 120px;
    font-weight: 600;
    color: #000;
}

.contact-line .value {
    flex: 1;
    color: #333;
}

/* Links */
.contact-line a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.contact-line a:hover {
    text-decoration: underline;
}

/* ================= COMMITTEE BOX ================= */
.committee-box {
    width: 85%;
    margin: 30px auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Main heading */
.main-heading {
    font-size: 22px;
    color: #0b3c91;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

/* ================= COLUMNS ================= */
.committee-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* Each column */
.column {
    flex: 1;
    min-width: 260px;
}

.column h4 {
    font-size: 18px;
    color: #0b3c91;
    border-left: 5px solid #0b3c91;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* List */
.column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.column ul li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px dashed #ccc;
    line-height: 1.6;
}

.column ul li:last-child {
    border-bottom: none;
}

/* Phone links */
.column ul li a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.column ul li a:hover {
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .admin-section,
    .committee-box {
        width: 95%;
        margin-top: 12px;
        padding: 18px;
    }

    .committee-columns {
        flex-direction: column;
        gap: 25px;
    }

    .section-title {
        font-size: 18px;
        padding: 10px 16px;
    }

    .main-heading {
        font-size: 18px;
    }

    /* Contact stack */
    .contact-line {
        flex-direction: column;
        gap: 2px;
    }

    .contact-line .label {
        min-width: auto;
        font-size: 14px;
    }

    .contact-line .value {
        font-size: 14px;
    }
}
