@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Crimson Text", Georgia, serif;
    background-color: #ffffff;
    color: #000000;
    padding: 0;
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.6;
}
.header-text h2 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #3d2b1f;
    font-weight: 700;
}

.navbar a {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c1e14;
    font-weight: 700;
    padding: 15px 25px;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
}

.navbar li {
    margin-right: 0;
    height: 100%;
    display: flex;
}

.navbar a.active,
.navbar a:hover {
    background-color: #3d2b1f;
    color: #ffffff !important;
    border-radius: 0; 
    margin-top: 0;
    padding-bottom: 15px;
}

.navbar li.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 300px; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 0 0 5px 5px;
    border-top: 4px solid #3d2b1f;
    top: 100%;
    left: 0;
    padding: 5px 0;
}

.dropdown-content.show {
    display: block !important;
}

.dropdown-content a {
    color: #000000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    text-transform: none; 
    margin: 0;
    background-color: transparent;
}

.dropdown-content a:hover {
    background-color: #f2ede9;
    color: #3d2b1f;
}

.fa-caret-down {
    margin-left: 8px;          
    transition: transform 0.3s ease;
}

.fa-caret-down.rotate {
    transform: rotate(180deg);
}
.home-page, .about-page {
    background-color: #ffffff; 
    padding: 40px 20px;
    width: 100%;
    max-width: 100vw;
}

.banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.banner-box {
    background-color: white;
    width: 100%;
    height: 300px;
    border-radius: 20px; 
    border: 1px solid #999;
}

.banner-arrow {
    font-size: 30px;
    cursor: pointer;
    color: black;
    font-weight: lighter; 
}

.home-divider {
    width: 100%;
    height: 3px;
    background-color: #3d2b1f; 
    margin-bottom: 30px;
}

.home-split-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.articles-col { flex: 2; }

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 40px;
}

.article-item {
    display: flex;
    flex-direction: column;
}

.article-img-placeholder {
    width: 100%;
    height: 180px; 
    background-color: #eee;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}
.article-item h3 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3d2b1f;
}
.article-item p {
    font-family: "Crimson Text", Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}

.announcements-col {
    flex: 1;
    border-left: 3px solid #3d2b1f;
    padding-left: 30px;
}
.announcement-title {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3d2b1f;
}
.announcement-list {
    list-style-type: disc; 
    padding-left: 20px;
}

.announcement-list li {
    font-family: "Crimson Text", Georgia, serif;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}
.page-title {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 32px;
    color: #3d2b1f; 
    font-weight: 800;
    margin-bottom: 5px;
}

.title-line {
    width: 100px;
    height: 4px;
    background-color: #3d2b1f;
    margin-bottom: 30px;
}

.about-split-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left-col {
    flex: 2;
    display: flex;
    flex-direction: column; 
}

.about-right-col { flex: 1; }

.message-text h2 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
    color: #3d2b1f;
}

.message-text p {
    font-family: "Crimson Text", Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 15px;
    color: #000000;
}

.president-photo-box {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-color: #e0e0e0;
    border: 1px solid #999;
    overflow: hidden;
    border-radius: 10px;
}

.president-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.vm-row {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
}

.green-card-small, .green-card {
    background-color: #3d2b1f;
    padding: 25px;
    border-radius: 15px;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.green-card-small { flex: 1; text-align: center; }

.green-card-small h3, .green-card h3 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
    color: #d4af37;
}

.green-card-small p, .green-card p {
    font-family: "Crimson Text", Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.full-width {
    width: 100%;      
    margin: 0 auto 30px auto; 
    max-width: 1400px;          
}

.grid-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.two-columns .green-card { flex: 1; }

.goals-list, .thrusts-list {
    font-family: "Crimson Text", Georgia, serif;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
}

.thrusts-list { list-style: none; }

.office-section {
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
    max-width: 1200px;
    margin: 0 auto;
}

.office-section:last-child { border-bottom: none; }

.office-header {
    background-color: #3d2b1f; 
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.office-content {
    padding: 0 15px;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}

.office-content h4 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    color: #3d2b1f;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 700;
}

.org-chart-img {
    width: 100%;
    max-width: 1200px; 
    height: auto;
    display: block;
    margin: 20px auto;
    border: 2px solid #3d2b1f;
}

.report-category-section {
    margin-bottom: 60px;
    position: relative; 
    max-width: 1400px;
    margin: 0 auto 60px auto;
}

.category-header {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase; 
    margin-bottom: 10px;
    border-bottom: 3px solid #3d2b1f;
    padding-bottom: 5px;
    color: black;
}

.green-content-box {
    background-color: #3d2b1f;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}

.white-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-img-placeholder {
    background-color: #d3d3d3;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    object-fit: cover;
}

.doc-cover-placeholder {
    height: 220px; 
    width: 70%;    
    margin: 0 auto 15px auto; 
}

.white-card h4 {
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 20px; 
    font-weight: 700;
    margin-bottom: 10px;
    color: #3d2b1f;
}

.white-card p {
    font-family: "Crimson Text", Georgia, serif;
    font-size: 16px; 
    line-height: 1.5;
    color: #000000;
    text-align: justify;
}

.contact-list-container {
    border: 1px solid #3d2b1f;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.contact-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.contact-row:last-child { border-bottom: none; }

.contact-cell {
    font-family: "Crimson Text", Georgia, serif;
    flex: 1;
    padding: 15px 20px;
    font-size: 18px;
    color: #000000;
}

.contact-row:nth-child(odd) { background-color: #ffffff; }
.contact-row:nth-child(even) { background-color: #f9f9f9; }

@media (max-width: 1024px) {
    .home-split-layout, .about-split-layout, .grid-row {
        flex-direction: column;
        padding: 0 20px;
    }
    .articles-col, .announcements-col { width: 100%; }
    .announcements-col {
        border-left: none;
        border-top: 3px solid #3d2b1f;
        padding-left: 0;
        padding-top: 30px;
        margin-top: 20px;
    }
    .cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-container {
        min-width: 0 !important;
        width: 100%;
    }

    .top-header { 
        flex-direction: column; 
        text-align: center; 
        padding: 15px 10px;
    }
    .logo-img { 
        margin: 0 0 10px 0; 
        height: 60px; 
    }
    .header-text h2 { font-size: 20px; line-height: 1.2; }
    
    .navbar { 
        padding: 0; 
        height: auto;
    }
    .navbar ul { 
        flex-direction: column; 
        width: 100%; 
    }
    .navbar li { 
        width: 100%; 
        border-bottom: 1px solid rgba(0,0,0,0.1); 
    }
    .navbar a { 
        padding: 15px; 
        justify-content: center;
        font-size: 14px; 
    }
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background-color: #ffffff;
    }
    
    .banner-box { height: 200px; }
    
    .articles-grid { grid-template-columns: 1fr; }
    
    .president-photo-box { min-height: 350px; }

    .vm-row { flex-direction: column; }
    
    .cards-grid { grid-template-columns: 1fr; }

    .contact-row { flex-direction: column; }
    .contact-cell {
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 10px;
    }
}