/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Poppins", sans-serif;
    background: #f5f6f8;
    color: #333;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



.page-banner {
    min-height: 315px;

    background:
        linear-gradient(
            rgba(25, 25, 25, 0.80),
            rgba(25, 25, 25, 0.80)
        ),
        url("../eoc.png");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    color: #ffffff;
}


.banner-overlay {
    width: 100%;
}



.page-banner h1 {
    text-align: center;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 10px;

    letter-spacing: 0.2px;
}



.banner-subtitle {
    text-align: center;

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.88);

    margin-bottom: 28px;
}

.banner-address {
    font-size: 13px;
    margin-top: -22px;
    margin-bottom: 28px;
}


/* =========================================================
   BANNER CONTACT INFORMATION
========================================================= */

.banner-contact {
    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    position: relative;
    left: 50px;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    border-top: 1px solid rgba(255, 255, 255, 0.35);

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);

    padding: 18px 0;
}

/* =========================================================
   CONTACT ITEM
========================================================= */

.contact-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 6px 5px;

    min-height: 5px;

    color: #ffffff;
}


/* Vertical separator */

.contact-item + .contact-item {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-item > i {
    width: 28px;

    min-width: 28px;

    text-align: center;

    font-size: 19px;

    color: #d9b54a;
}


/* =========================================================
   CONTACT TEXT CONTAINER
========================================================= */

.contact-item div {
    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 2px;

    min-width: 0;
}


/* =========================================================
   CONTACT LABEL
========================================================= */

.contact-label {
    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   CONTACT VALUE
========================================================= */

.contact-value {
    display: block;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.5;

    color: #ffffff !important;

    text-decoration: none;

    white-space: normal;
}


/* =========================================================
   LINK STATES
========================================================= */

.contact-value:link,
.contact-value:visited,
.contact-value:hover,
.contact-value:active {
    color: #ffffff !important;

    text-decoration: none;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.main-content {
    padding: 50px 0;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.content-card {
    background: #ffffff;

    padding: 30px;

    border-radius: 10px;

    margin-bottom: 30px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    border-bottom: 2px solid #e6e6e6;

    padding-bottom: 15px;
}


.section-heading i {
    font-size: 22px;

    color: #c99a20;
}


.section-heading h2 {
    font-size: 23px;

    color: #333;
}


/* =========================================================
   GENERAL CONTENT
========================================================= */

.notification-content p {
    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 15px;

    text-align: justify;
}


.content-card p {
    font-size: 15px;

    line-height: 1.8;
}


.content-card p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   OBJECTIVES / ROLES & RESPONSIBILITIES
========================================================= */

.responsibility-list {
    margin: 0;

    padding-left: 25px;
}


.responsibility-list li {
    padding-left: 8px;

    margin-bottom: 14px;

    line-height: 1.8;

    font-size: 15px;

    color: #333;
}


.responsibility-list li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLE
========================================================= */

.table-responsive {
    width: 100%;

    overflow-x: auto;
}


.committee-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 750px;
}


.committee-table th {
    background: #333333;

    color: #ffffff;

    padding: 14px;

    text-align: left;

    font-size: 14px;
}


.committee-table td {
    padding: 13px;

    border-bottom: 1px solid #e5e5e5;

    font-size: 14px;
}


.committee-table tbody tr {
    transition: 0.2s ease;
}


.committee-table tbody tr:hover {
    background: #faf7ef;
}


/* Serial number */

.committee-table th:first-child,
.committee-table td:first-child {
    width: 100px;

    text-align: center;

    font-weight: 600;
}


/* Name */

.committee-table th:nth-child(2),
.committee-table td:nth-child(2) {
    width: 30%;

    font-weight: 500;
}


/* =========================================================
   COMPLAINT / GRIEVANCE SECTION
========================================================= */

.complaint-section {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #333333 0%,
            #1f1f1f 100%
        );

    border-radius: 14px;

    padding: 35px 40px;

    color: #ffffff;

    display: flex;

    align-items: center;

    gap: 25px;

    margin-bottom: 35px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);

    overflow: hidden;
}


/* =========================================================
   GOLD LEFT ACCENT
========================================================= */

.complaint-section::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 6px;
    height: 100%;

    background: #c99a20;
}


/* =========================================================
   COMPLAINT ICON
========================================================= */

.complaint-icon {
    width: 82px;
    height: 82px;

    min-width: 82px;

    border-radius: 50%;

    background: #c99a20;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    color: #ffffff;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   COMPLAINT CONTENT
========================================================= */

.complaint-content {
    flex: 1;
}


.complaint-content h2 {
    font-size: 27px;

    margin-bottom: 8px;

    font-weight: 600;
}


.complaint-content p {
    font-size: 14px;

    line-height: 1.7;

    color: #dddddd;

    max-width: 720px;

    margin: 0;
}


/* =========================================================
   COMPLAINT BUTTON
========================================================= */

.google-form-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #c99a20;

    color: #ffffff;

    padding: 15px 25px;

    min-width: 225px;

    text-decoration: none;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2);
}


.google-form-btn:hover {
    background: #e0ad27;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   FOOTER
========================================================= */

.page-footer {
    text-align: center;

    padding: 25px 20px;

    background: #333333;

    color: #dddddd;

    font-size: 13px;
}


.page-footer p {
    margin: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .page-banner {
        min-height: 340px;
    }


    .banner-contact {
        grid-template-columns: 1fr 1fr;
    }


    .contact-item:last-child {
        grid-column: 1 / -1;

        justify-content: center;

        border-left: none;

        border-top: 1px solid rgba(255, 255, 255, 0.28);

        margin-top: 10px;

        padding-top: 15px;
    }


    .complaint-section {
        gap: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    /* Container */

    .container {
        width: 92%;
    }


    /* Banner */

    .page-banner {
        min-height: 390px;

        padding: 35px 0;
    }


    .page-banner h1 {
        font-size: 28px;

        line-height: 1.3;

        margin-bottom: 10px;
    }


    .banner-subtitle {
        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 22px;
    }


    /* Contact section */

    .banner-contact {
        grid-template-columns: 1fr;

        width: 100%;

        padding: 8px 0;
    }


    .contact-item {
        padding: 12px 10px;

        min-height: 50px;
    }


    .contact-item + .contact-item {
        border-left: none;

        border-top: 1px solid rgba(255, 255, 255, 0.25);
    }


    .contact-item:last-child {
        grid-column: auto;

        justify-content: flex-start;

        border-top: 1px solid rgba(255, 255, 255, 0.25);

        margin-top: 0;

        padding-top: 12px;
    }


    .contact-item > i {
        font-size: 18px;
    }


    .contact-label {
        font-size: 9px;
    }


    .contact-value {
        font-size: 12px;
    }


    /* Main content */

    .main-content {
        padding: 30px 0;
    }


    /* Cards */

    .content-card {
        padding: 20px;

        margin-bottom: 25px;
    }


    /* Section heading */

    .section-heading {
        gap: 10px;

        margin-bottom: 20px;

        padding-bottom: 12px;
    }


    .section-heading i {
        font-size: 19px;
    }


    .section-heading h2 {
        font-size: 20px;
    }


    /* Lists */

    .responsibility-list {
        padding-left: 22px;
    }


    .responsibility-list li {
        padding-left: 6px;

        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 12px;
    }


    /* Table */

    .committee-table {
        min-width: 700px;
    }


    /* Complaint */

    .complaint-section {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 25px;

        gap: 25px;
    }


    .complaint-icon {
        width: 65px;
        height: 65px;

        min-width: 65px;

        font-size: 25px;
    }


    .complaint-content h2 {
        font-size: 21px;
    }


    .complaint-content p {
        font-size: 13px;
    }


    .google-form-btn {
        width: 100%;

        min-width: 0;
    }

}



@media (max-width: 480px) {

    .page-banner {
        min-height: 405px;

        padding: 30px 0;
	left: 0;
    }


    .page-banner h1 {
        font-size: 24px;
    }


    .banner-subtitle {
        font-size: 12px;
    }


    .contact-item {
        padding-left: 5px;

        padding-right: 5px;
    }


    .contact-item > i {
        min-width: 23px;

        font-size: 17px;
    }


    .contact-label {
        font-size: 9px;
    }


    .contact-value {
        font-size: 11px;
    }


    .content-card {
        padding: 17px;
    }


    .section-heading h2 {
        font-size: 18px;
    }


    .complaint-section {
        padding: 25px 20px;
    }


    .complaint-icon {
        width: 55px;
        height: 55px;

        min-width: 55px;

        font-size: 21px;
    }

}
