body.staff-page-body {
    font-family: Arial, sans-serif !important;
    background-color: #f4f4f4 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.staff-hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../image/caseReview.png');
    height: 60vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    border-top: none;
    border-bottom: 2px solid #fff;
    margin: 0;
}

.staff-hero-section h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.staff-hero-section p {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .staff-hero-section {
        height: 40vh;
    }
    .staff-hero-section h1 {
        font-size: 2rem;
    }
    .staff-hero-section p {
        font-size: 1rem;
    }
}

.content-section {
    background-color: #ffffff;
    padding: 40px 20px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-container h2 {
    color: rgb(0, 51, 4);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgb(0, 51, 4);
    padding-bottom: 0.5rem;
}

.content-container h3 {
    color: rgb(0, 51, 4);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.content-container p {
    margin-bottom: 1.2rem;
    color: #333;
    text-align: justify;
}

.content-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.content-container li {
    margin-bottom: 0.8rem;
    color: #333;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid rgb(0, 51, 4);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.crc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.crc-table th {
    background-color: rgb(0, 51, 4);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.crc-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    vertical-align: top;
}

.crc-table td:last-child {
    border-right: none;
}

.crc-table tr:hover {
    background-color: #f8f9fa;
}

.crc-table tr:last-child td {
    border-bottom: none;
}

.member-name {
    font-weight: 600;
    color: rgb(0, 51, 4);
    font-size: 1.1rem;
}

.member-role {
    color: #333;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .content-section {
        padding: 20px 15px;
    }
    
    .content-container h2 {
        font-size: 1.5rem;
    }
    
    .content-container h3 {
        font-size: 1.2rem;
    }

    .crc-table {
        font-size: 0.9rem;
    }

    .crc-table th,
    .crc-table td {
        padding: 0.75rem 0.5rem;
    }

    .member-name {
        font-size: 1rem;
    }
}

.about-nav {
    background-color: rgb(209, 209, 209);
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    overflow-x: auto;
    overflow-y: hidden;
}

.about-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
}

.about-nav ul li {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
}

.about-nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.about-nav ul li a:hover {
    background-color: rgb(163, 163, 163);
}

.about-nav ul li:nth-child(6) a {
    background-color: rgb(0, 95, 8);
    color: #ffffff;
}

.about-nav ul li:nth-child(6) a:hover {
    background-color: rgb(0, 59, 5);
}

@media (max-width: 768px) {
    .about-hero-section {
        height: 40vh;
    }
    .about-hero-section h1 {
        font-size: 2rem;
    }
    .about-hero-section p {
        font-size: 1rem;
    }
    .about-nav {
        padding: 0.5rem 0;
    }
    .about-nav ul {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
    .about-nav ul li a {
        padding: 0.75rem 1rem;
        width: 100vw;
        text-align: center;
    }
}