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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f9f7;
    color: #1f2933;
    line-height: 1.6;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

/* HEADER */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #0f5132;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.brand-text h1 {
    font-size: 20px;
    color: #143d2b;
    line-height: 1.2;
}

.brand-text p {
    font-size: 12px;
    color: #6b7280;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.main-nav a:hover {
    color: #0f7a4f;
}

.menu-toggle {
    display: none;
    border: none;
    background: #0f5132;
    color: white;
    font-size: 22px;
    padding: 7px 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* HERO */

.hero {
    background:
        linear-gradient(
            rgba(9, 71, 47, 0.92),
            rgba(9, 71, 47, 0.88)
        );
    color: #ffffff;
    padding: 100px 0;
}

.hero-content {
    max-width: 760px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #e8f3ed;
    max-width: 680px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 9px;
    font-weight: bold;
    transition: 0.2s;
}

.btn-primary {
    background: #d4a72c;
    color: #19251e;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.6);
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* QUICK LINKS */

.quick-links {
    padding: 70px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading span {
    color: #14804f;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    font-size: 34px;
    color: #18392a;
    margin-top: 5px;
}

.section-heading p {
    color: #64748b;
    margin-top: 8px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-card {
    background: #ffffff;
    border: 1px solid #e4e9e6;
    border-radius: 14px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.quick-card:hover {
    transform: translateY(-5px);
    border-color: #a9cdb9;
}

.quick-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.quick-card h3 {
    color: #17472f;
    font-size: 18px;
    margin-bottom: 8px;
}

.quick-card p {
    font-size: 14px;
    color: #64748b;
}

/* ABOUT */

.about-section {
    background: #ffffff;
    padding: 75px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: #18392a;
    margin-bottom: 18px;
}

.about-text p {
    color: #667085;
    margin-bottom: 16px;
}

.about-box {
    background: #edf6f0;
    padding: 35px;
    border-radius: 18px;
}

.about-box h3 {
    color: #17472f;
    margin-bottom: 10px;
}

.about-box p {
    color: #607267;
}

/* ANNOUNCEMENTS */

.announcements {
    padding: 75px 0;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.announcement-card {
    background: #ffffff;
    border: 1px solid #e6ebe8;
    border-radius: 14px;
    padding: 25px;
}

.announcement-date {
    font-size: 12px;
    color: #0f7a4f;
    font-weight: bold;
    margin-bottom: 10px;
}

.announcement-card h3 {
    color: #26372e;
    margin-bottom: 10px;
}

.announcement-card p {
    font-size: 14px;
    color: #64748b;
}

/* FOOTER */

.site-footer {
    background: #102d21;
    color: #dbe9e1;
    padding-top: 55px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-content h3,
.footer-content h4 {
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-content a {
    display: block;
    color: #c9dbd1;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-content p {
    color: #b7cabf;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 45px;
    padding: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #9fb8aa;
}

/* RESPONSIVE */

@media (max-width: 1000px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px 5%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid #e5e7eb;
    }

    .main-nav.show {
        display: flex;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .announcement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .brand-text p {
        display: none;
    }

    .brand-text h1 {
        font-size: 16px;
    }

    .hero {
        padding: 75px 0;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .card-grid,
    .announcement-grid,
    .about-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 30px;
    }

    .section-heading h2,
    .about-text h2 {
        font-size: 28px;
    }
}/* PAGE HERO */

.page-hero {
    background: #eef5f0;
    padding: 65px 0;
    border-bottom: 1px solid #dde8e1;
}

.page-label {
    display: inline-block;
    color: #0f7a4f;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
}

.page-hero h2 {
    color: #173d2b;
    font-size: clamp(34px, 5vw, 48px);
    margin-bottom: 10px;
}

.page-hero p {
    max-width: 700px;
    color: #64748b;
    font-size: 17px;
}


/* FORMS PAGE */

.forms-section {
    padding: 70px 0;
}

.form-category {
    margin-bottom: 55px;
}

.category-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.category-heading h3 {
    color: #173d2b;
    font-size: 26px;
    margin-bottom: 4px;
}

.category-heading p {
    color: #64748b;
    max-width: 720px;
}

.forms-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-item {
    background: #ffffff;
    border: 1px solid #e3e9e5;
    border-radius: 14px;
    padding: 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    transition: 0.2s;
}

.form-item:hover {
    border-color: #b5d3c1;
    transform: translateY(-2px);
}

.form-file-icon {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    background: #edf6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.form-details h4 {
    color: #25392f;
    font-size: 17px;
    margin-bottom: 5px;
}

.form-details p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 9px;
}

.form-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.form-meta span {
    color: #7a8a81;
    font-size: 12px;
}

.download-btn {
    display: inline-block;
    background: #0f623f;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.2s;
}

.download-btn:hover {
    background: #0a4d31;
}

.empty-state {
    background: #ffffff;
    border: 1px dashed #cad8d0;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.empty-state h4 {
    color: #34483d;
    margin-bottom: 3px;
}

.empty-state p {
    color: #75837b;
    font-size: 14px;
}

.empty-icon {
    font-size: 30px;
}


/* MOBILE FORMS */

@media (max-width: 700px) {

    .page-hero {
        padding: 45px 0;
    }

    .form-item {
        grid-template-columns: auto 1fr;
    }

    .form-action {
        grid-column: 1 / -1;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }
}/* ADMIN LOGIN */

.admin-login-body {
    min-height: 100vh;
    background: #edf3ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    padding: 30px 20px;
}

.login-card {
    width: min(430px, 100%);
    margin: auto;
    background: #ffffff;
    border: 1px solid #dde7e1;
    border-radius: 18px;
    padding: 38px;
}

.login-brand {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    width: 62px;
    height: 62px;
    background: #0f5132;
    color: white;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.login-brand h1 {
    color: #173d2b;
    font-size: 26px;
}

.login-brand p {
    color: #6b7c72;
    font-size: 14px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #36473e;
    margin-bottom: 7px;
}

.form-group input {
    width: 100%;
    border: 1px solid #cedbd3;
    border-radius: 9px;
    padding: 12px 13px;
    font-size: 15px;
    outline: none;
}

.form-group input:focus {
    border-color: #0f7a4f;
}

.login-button {
    width: 100%;
    border: none;
    border-radius: 9px;
    background: #0f623f;
    color: white;
    padding: 13px;
    font-weight: bold;
    cursor: pointer;
}

.login-button:hover {
    background: #0a4d31;
}

.login-error {
    background: #fff0f0;
    color: #a82828;
    padding: 11px 13px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
}

.login-footer a {
    color: #0f623f;
    text-decoration: none;
    font-size: 14px;
}


/* ADMIN DASHBOARD */

.admin-body {
    background: #f3f6f4;
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
}

.admin-sidebar {
    background: #102d21;
    color: white;
    padding: 25px 18px;
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 8px 25px;
}

.admin-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #d4a72c;
    color: #15251d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.admin-sidebar-brand strong {
    display: block;
}

.admin-sidebar-brand span {
    display: block;
    font-size: 11px;
    color: #9fb8aa;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-nav a {
    color: #cfddd5;
    padding: 11px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.admin-nav .logout-link {
    margin-top: 15px;
    color: #ffbaba;
}

.admin-main {
    padding: 35px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-topbar h1 {
    color: #173d2b;
    font-size: 31px;
}

.admin-topbar p {
    color: #728079;
}

.admin-profile {
    background: white;
    border: 1px solid #dfe7e2;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 13px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.admin-stat-card {
    background: white;
    border: 1px solid #e0e7e3;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.stat-icon {
    font-size: 28px;
}

.admin-stat-card p {
    color: #718079;
    font-size: 13px;
}

.admin-stat-card h2 {
    color: #173d2b;
    font-size: 28px;
}

.admin-welcome-card {
    background: white;
    border: 1px solid #e0e7e3;
    border-radius: 14px;
    padding: 28px;
    margin-top: 25px;
}

.admin-welcome-card h2 {
    color: #173d2b;
    margin-bottom: 8px;
}

.admin-welcome-card p {
    color: #687871;
}


@media (max-width: 900px) {

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        min-height: auto;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .admin-main {
        padding: 20px;
    }

    .admin-topbar {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }
}/* ADMIN PAGE HEADER */

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.admin-page-header h1 {
    color: #173d2b;
    font-size: 30px;
}

.admin-page-header p {
    color: #728079;
    margin-top: 4px;
}

.admin-primary-btn {
    display: inline-block;
    background: #0f623f;
    color: #ffffff;
    text-decoration: none;
    padding: 11px 17px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.2s;
}

.admin-primary-btn:hover {
    background: #0a4d31;
}


/* ADMIN TABLE */

.admin-table-card {
    background: #ffffff;
    border: 1px solid #e0e7e3;
    border-radius: 14px;
    overflow: hidden;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th {
    background: #f5f8f6;
    color: #596960;
    font-size: 12px;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #e1e8e4;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.admin-table td {
    padding: 16px;
    border-bottom: 1px solid #edf1ef;
    font-size: 14px;
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover {
    background: #fafcfb;
}

.table-title {
    color: #263c31;
    font-weight: bold;
    margin-bottom: 4px;
}

.table-description {
    color: #7b8982;
    font-size: 12px;
}

.table-file-link {
    color: #0f6b45;
    font-weight: bold;
    text-decoration: none;
}

.table-file-link:hover {
    text-decoration: underline;
}


/* STATUS BADGES */

.status-badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: bold;
}

.status-active {
    background: #e4f5eb;
    color: #17663f;
}

.status-inactive {
    background: #f2f2f2;
    color: #777777;
}


/* TABLE ACTIONS */

.table-actions {
    display: flex;
    gap: 7px;
}

.action-btn {
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: bold;
}

.edit-btn {
    background: #eef5ff;
    color: #235c9c;
}

.delete-btn {
    background: #fff0f0;
    color: #a83b3b;
}

.edit-btn:hover {
    background: #dfeeff;
}

.delete-btn:hover {
    background: #ffe1e1;
}


/* ADMIN EMPTY STATE */

.admin-empty-state {
    padding: 55px 25px;
    text-align: center;
}

.admin-empty-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.admin-empty-state h3 {
    color: #31483b;
    margin-bottom: 6px;
}

.admin-empty-state p {
    color: #77867e;
    margin-bottom: 18px;
}


/* ADMIN RESPONSIVE */

@media (max-width: 700px) {

    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-primary-btn {
        width: 100%;
        text-align: center;
    }
}/* ADMIN FORM */

.admin-form-card {
    background: #ffffff;
    border: 1px solid #e0e7e3;
    border-radius: 14px;
    padding: 30px;
    max-width: 850px;
}

.admin-form-group {
    margin-bottom: 20px;
}

.admin-form-group label {
    display: block;
    color: #34483d;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 7px;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #ccd9d1;
    border-radius: 8px;
    background: #ffffff;
    color: #293a31;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    border-color: #0f7a4f;
}

.admin-form-group textarea {
    resize: vertical;
}

.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.upload-box {
    border: 1px dashed #aabfb2;
    border-radius: 10px;
    background: #f8fbf9;
    padding: 20px;
}

.upload-box input {
    border: none;
    padding: 0;
}

.upload-box p {
    color: #7a8981;
    font-size: 12px;
    margin-top: 10px;
}

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 10px;
}

.admin-submit-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.admin-secondary-btn,
.admin-cancel-btn {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #ced9d2;
    color: #43554b;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.admin-secondary-btn:hover,
.admin-cancel-btn:hover {
    background: #f3f6f4;
}

.admin-alert {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.admin-alert-error {
    background: #fff0f0;
    color: #a72d2d;
    border: 1px solid #ffd4d4;
}

.admin-alert-success {
    background: #eaf7ef;
    color: #17633e;
    border: 1px solid #cce9d7;
}

@media (max-width: 700px) {

    .admin-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .admin-form-card {
        padding: 20px;
    }

    .admin-form-actions {
        flex-direction: column-reverse;
    }

    .admin-form-actions a,
    .admin-form-actions button {
        width: 100%;
        text-align: center;
    }
}/* CURRENT FILE */

.current-file-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid #dce6e0;
    border-radius: 9px;
    background: #f8fbf9;
}

.current-file-box > span {
    font-size: 26px;
}

.current-file-box strong {
    display: block;
    color: #34483d;
    font-size: 13px;
    margin-bottom: 3px;
    word-break: break-all;
}

.current-file-box a {
    color: #0f6b45;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

.current-file-box a:hover {
    text-decoration: underline;
}/* PUBLIC ANNOUNCEMENTS */

.public-announcements {
    padding: 70px 0;
}

.public-announcement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.public-announcement-card {
    background: #ffffff;
    border: 1px solid #e0e8e3;
    border-radius: 14px;
    padding: 28px;
}

.public-announcement-date {
    color: #0f7a4f;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.public-announcement-card h3 {
    color: #203a2c;
    font-size: 20px;
    margin-bottom: 12px;
}

.public-announcement-card p {
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 700px) {
    .public-announcement-grid {
        grid-template-columns: 1fr;
    }
}/* FAQ PAGE */

.faq-section {
    padding: 70px 0;
}

.faq-container {
    max-width: 850px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e7e3;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: #ffffff;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #253d31;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.faq-question:hover {
    background: #f8fbf9;
}

.faq-plus {
    font-size: 24px;
    color: #0f7a4f;
    transition: 0.2s;
}

.faq-answer {
    display: none;
    padding: 0 22px 22px;
}

.faq-answer p {
    color: #64748b;
    font-size: 14px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-plus {
    transform: rotate(45deg);
}/* GUIDELINES PAGE */

.guidelines-section {
    padding: 70px 0;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.guideline-card {
    background: #ffffff;
    border: 1px solid #e0e8e3;
    border-radius: 14px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guideline-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #edf6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.guideline-content h3 {
    color: #203a2c;
    font-size: 19px;
    margin-bottom: 8px;
}

.guideline-content p {
    color: #64748b;
    font-size: 14px;
}

.guideline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.guideline-view-btn,
.guideline-download-btn {
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
}

.guideline-view-btn {
    background: #eef5f0;
    color: #0f623f;
}

.guideline-download-btn {
    background: #0f623f;
    color: #ffffff;
}

.guideline-view-btn:hover {
    background: #dfece4;
}

.guideline-download-btn:hover {
    background: #0a4d31;
}

@media (max-width: 700px) {
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
}/* CONTACT PAGE */

.contact-section {
    padding: 75px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: #173d2b;
    font-size: 34px;
    margin-bottom: 12px;
}

.contact-info > p {
    color: #64748b;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #e6ebe8;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #edf6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.contact-info-card h3 {
    color: #243c30;
    font-size: 15px;
    margin-bottom: 3px;
}

.contact-info-card p {
    color: #6c7b73;
    font-size: 14px;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e0e7e3;
    border-radius: 16px;
    padding: 32px;
}

.contact-form-card h2 {
    color: #173d2b;
    font-size: 27px;
}

.contact-form-intro {
    color: #718079;
    font-size: 14px;
    margin: 5px 0 25px;
}

.contact-submit-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-form-card {
        padding: 22px;
    }
}/* ADMIN MESSAGES */

.message-unread {
    background: #fff4d6;
    color: #805b00;
}

.message-card {
    background: #ffffff;
    border: 1px solid #e0e7e3;
    border-radius: 14px;
    padding: 30px;
    max-width: 900px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e8eeea;
}

.message-label {
    display: block;
    color: #7b8982;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.message-header h2 {
    color: #203a2c;
    font-size: 23px;
}

.message-header a {
    color: #0f6b45;
    text-decoration: none;
    font-size: 14px;
}

.message-date {
    color: #75837c;
    font-size: 13px;
}

.message-subject {
    padding: 22px 0;
    border-bottom: 1px solid #e8eeea;
}

.message-subject h3 {
    color: #2a4034;
    font-size: 18px;
}

.message-content {
    padding: 25px 0;
    color: #4e5f56;
    line-height: 1.8;
}

.message-actions {
    padding-top: 10px;
}

@media (max-width: 700px) {

    .message-header {
        flex-direction: column;
    }
}/* ABOUT REC */

.about-rec-section {
    padding: 75px 0;
    background: #ffffff;
}

.about-rec-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-rec-grid h2 {
    color: #173d2b;
    font-size: 36px;
    margin-bottom: 18px;
}

.about-rec-grid p {
    color: #64748b;
    margin-bottom: 15px;
}

.about-highlight-card {
    background: #edf6f0;
    border-radius: 16px;
    padding: 32px;
}

.about-highlight-card h3 {
    color: #173d2b;
    margin-bottom: 10px;
}


/* REC INFORMATION */

.rec-information-section {
    padding: 70px 0;
}

.rec-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.rec-info-card {
    background: #ffffff;
    border: 1px solid #e0e8e3;
    border-radius: 14px;
    padding: 28px;
}

.rec-info-icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.rec-info-card h3 {
    color: #203a2c;
    margin-bottom: 8px;
}

.rec-info-card p {
    color: #64748b;
    font-size: 14px;
}


/* COMMITTEE */

.committee-section {
    background: #ffffff;
    padding: 75px 0;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.committee-card {
    border: 1px solid #e0e8e3;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.committee-photo {
    height: 240px;
    background: #edf5f0;
}

.committee-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.committee-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
}

.committee-details {
    padding: 20px;
}

.committee-details h3 {
    color: #203a2c;
    font-size: 18px;
    margin-bottom: 4px;
}

.committee-position {
    color: #0f7a4f;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.committee-details p {
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 900px) {

    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .about-rec-grid,
    .rec-info-grid,
    .committee-grid {
        grid-template-columns: 1fr;
    }

    .about-rec-grid {
        gap: 30px;
    }
}/* ADMIN COMMITTEE */

.admin-member-photo {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.admin-member-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #edf5f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}/* REVIEW PROCESS */

.process-section {
    padding: 75px 0;
}

.process-timeline {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    position: relative;
    padding-bottom: 35px;
}

.process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 29px;
    top: 55px;
    bottom: 0;
    width: 2px;
    background: #d7e5dc;
}

.process-number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #0f623f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.process-content {
    background: #ffffff;
    border: 1px solid #e0e8e3;
    border-radius: 14px;
    padding: 23px;
}

.process-content h3 {
    color: #203a2c;
    margin-bottom: 7px;
}

.process-content p {
    color: #64748b;
    font-size: 14px;
}

.requirements-section {
    padding: 0 0 75px;
}

.requirements-card {
    background: #edf6f0;
    border-radius: 18px;
    padding: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.requirements-card h2 {
    color: #173d2b;
    font-size: 29px;
    margin-bottom: 10px;
}

.requirements-card p {
    max-width: 700px;
    color: #64748b;
}

.requirements-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 170px;
}

.requirements-link {
    text-align: center;
    color: #0f623f;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 700px) {

    .process-step {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .process-number {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .process-step:not(:last-child)::before {
        left: 21px;
        top: 43px;
    }

    .requirements-card {
        flex-direction: column;
        align-items: stretch;
        padding: 25px;
    }
}/* SUBMISSION REQUIREMENTS PAGE */

.requirements-page-section {
    padding: 70px 0;
}

.requirements-intro-card {
    background: #edf6f0;
    border-radius: 18px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    margin-bottom: 40px;
}

.requirements-intro-card h2 {
    color: #173d2b;
    font-size: 30px;
    margin-bottom: 8px;
}

.requirements-intro-card p {
    color: #64748b;
    max-width: 700px;
}

.requirements-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 35px;
    align-items: start;
}


/* REQUIREMENT GROUP */

.requirement-group {
    background: #ffffff;
    border: 1px solid #e0e8e3;
    border-radius: 16px;
    margin-bottom: 22px;
    overflow: hidden;
}

.requirement-group-heading {
    padding: 24px;
    border-bottom: 1px solid #e8eeea;
    display: flex;
    align-items: center;
    gap: 17px;
}

.requirement-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #0f623f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
}

.requirement-group-heading h3 {
    color: #203a2c;
    font-size: 19px;
    margin-bottom: 3px;
}

.requirement-group-heading p {
    color: #74827a;
    font-size: 13px;
}


/* REQUIREMENT ITEMS */

.requirement-list {
    padding: 5px 24px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #edf1ef;
}

.requirement-item:last-child {
    border-bottom: none;
}

.requirement-check {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #e5f4eb;
    color: #0f6b45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.requirement-item strong {
    display: block;
    color: #293f33;
    margin-bottom: 4px;
}

.requirement-item p {
    color: #718079;
    font-size: 13px;
}


/* REQUIREMENTS SIDEBAR */

.requirements-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.requirements-side-card {
    background: #ffffff;
    border: 1px solid #e0e8e3;
    border-radius: 14px;
    padding: 23px;
}

.requirements-side-card h3 {
    color: #203a2c;
    font-size: 18px;
    margin-bottom: 7px;
}

.requirements-side-card p {
    color: #718079;
    font-size: 13px;
    margin-bottom: 14px;
}

.requirements-side-link {
    color: #0f6b45;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.requirements-side-link:hover {
    text-decoration: underline;
}


/* MOBILE */

@media (max-width: 900px) {

    .requirements-layout {
        grid-template-columns: 1fr;
    }

    .requirements-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {

    .requirements-intro-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .requirements-intro-card .btn {
        width: 100%;
        text-align: center;
    }

    .requirements-sidebar {
        grid-template-columns: 1fr;
    }

    .requirement-group-heading {
        align-items: flex-start;
    }
}.password-help {
    display: block;
    color: #7a8981;
    font-size: 12px;
    margin-top: 6px;
}.inline-delete-form {
    display: inline;
    margin: 0;
}

.delete-button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}.inline-delete-form {
    display: inline;
    margin: 0;
}

.delete-button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}/* FINAL RESPONSIVE POLISH */

@media (max-width: 900px) {

    .container {
        width: min(94%, 1180px);
    }

    .header-wrapper {
        min-height: 72px;
    }

    .main-nav {
        top: 72px;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h2 {
        font-size: clamp(34px, 7vw, 48px);
    }

    .page-hero {
        padding: 50px 0;
    }

    .page-hero h2 {
        font-size: clamp(30px, 6vw, 42px);
    }

    .requirements-layout {
        grid-template-columns: 1fr;
    }

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

    .about-rec-grid {
        grid-template-columns: 1fr;
    }

    .guidelines-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    body {
        font-size: 15px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        font-size: 13px;
    }

    .brand-text {
        min-width: 0;
    }

    .brand-text h1 {
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 220px;
    }

    .brand-text p {
        display: none;
    }

    .menu-toggle {
        flex-shrink: 0;
    }

    .main-nav {
        gap: 5px;
    }

    .main-nav a {
        width: 100%;
        padding: 11px 8px;
        border-radius: 7px;
    }

    .main-nav a:hover {
        background: #f1f6f3;
    }

    .hero {
        padding: 55px 0;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-heading {
        margin-bottom: 28px;
    }

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

    .quick-links,
    .about-section,
    .announcements,
    .forms-section,
    .public-announcements,
    .faq-section,
    .guidelines-section,
    .contact-section,
    .about-rec-section,
    .rec-information-section,
    .committee-section,
    .process-section,
    .requirements-page-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .quick-card,
    .announcement-card,
    .public-announcement-card,
    .guideline-card,
    .rec-info-card,
    .contact-form-card,
    .requirements-side-card {
        padding: 20px;
    }

    .form-item {
        grid-template-columns: 1fr;
    }

    .form-file-icon {
        margin-bottom: 5px;
    }

    .form-action {
        grid-column: auto;
    }

    .download-btn {
        width: 100%;
    }

    .requirements-intro-card {
        padding: 22px;
    }

    .requirement-group-heading {
        padding: 20px;
    }

    .requirement-list {
        padding: 4px 20px;
    }

    .process-step {
        grid-template-columns: 40px 1fr;
    }

    .process-number {
        width: 40px;
        height: 40px;
    }

    .process-step:not(:last-child)::before {
        left: 19px;
    }

    .footer-content {
        gap: 28px;
    }
}


@media (max-width: 420px) {

    .container {
        width: 92%;
    }

    .brand-text h1 {
        max-width: 170px;
    }

    .hero h2 {
        font-size: 31px;
    }

    .page-hero h2 {
        font-size: 29px;
    }

    .requirements-card,
    .requirements-intro-card,
    .contact-form-card,
    .message-card {
        border-radius: 12px;
    }
}/* ADMIN MOBILE POLISH */

@media (max-width: 900px) {

    .admin-layout {
        display: block;
    }

    .admin-sidebar {
        width: 100%;
        min-height: auto;
        position: static;
    }

    .admin-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .admin-nav .logout-link {
        margin-top: 0;
    }

    .admin-main {
        padding: 24px;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .admin-sidebar {
        padding: 18px 14px;
    }

    .admin-sidebar-brand {
        padding-bottom: 15px;
    }

    .admin-nav {
        grid-template-columns: 1fr;
    }

    .admin-main {
        padding: 18px 14px;
    }

    .admin-page-header {
        align-items: stretch;
    }

    .admin-page-header h1 {
        font-size: 25px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-stat-card {
        padding: 18px;
    }

    .admin-form-card {
        padding: 18px;
    }

    .admin-table-card {
        border-radius: 10px;
    }

    .admin-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .admin-table {
        min-width: 760px;
    }

    .admin-form-row {
        grid-template-columns: 1fr;
    }

    .admin-form-actions {
        flex-direction: column-reverse;
    }

    .admin-form-actions .admin-primary-btn,
    .admin-form-actions .admin-cancel-btn {
        width: 100%;
        text-align: center;
    }
}.brand-logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border-radius: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}.brand-logo {
    width: 42px;
    height: 42px;
}.brand-logo {
    width: 46px;
    height: 46px;
}.login-logo {
    width: 76px;
    height: 76px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.login-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}.admin-logo {
    width: 46px;
    height: 46px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}/* =========================================================
   FORMS & DOWNLOADS - SIMPLE PUBLIC LIST
   ========================================================= */

.forms-simple-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    margin-bottom: 30px;
    padding: 28px 30px;

    background: #ffffff;
    border: 1px solid #e3ebe6;
    border-radius: 16px;
}

.forms-simple-header > div:first-child {
    max-width: 760px;
}

.forms-simple-label {
    display: inline-block;

    margin-bottom: 8px;

    color: #2f6b4f;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.forms-simple-header h3 {
    margin: 0 0 8px;

    color: #163c2c;
    font-size: 26px;
}

.forms-simple-header p {
    margin: 0;

    color: #65746c;
    line-height: 1.7;
}


/* Form count */

.forms-count {
    min-width: 130px;

    padding: 18px 20px;

    text-align: center;

    background: #f1f7f3;
    border-radius: 14px;
}

.forms-count strong {
    display: block;

    color: #1d5b3e;
    font-size: 30px;
    line-height: 1;
}

.forms-count span {
    display: block;

    margin-top: 7px;

    color: #66766d;
    font-size: 12px;
    font-weight: 600;
}


/* One unified list */

.forms-simple-list {
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e3ebe6;
    border-radius: 16px;
}

.forms-simple-list .form-item {
    margin: 0;

    border: 0;
    border-bottom: 1px solid #e9efeb;
    border-radius: 0;
}

.forms-simple-list .form-item:last-child {
    border-bottom: 0;
}


/* Metadata */

.forms-simple-list .form-meta strong {
    color: #415c4e;
    font-weight: 600;
}


/* Empty state */

.forms-empty-state {
    padding: 45px 30px;
}


/* Tablet / Mobile */

@media (max-width: 700px) {

    .forms-simple-header {
        flex-direction: column;
        align-items: stretch;

        padding: 22px;
    }

    .forms-simple-header h3 {
        font-size: 23px;
    }

    .forms-count {
        min-width: 0;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .forms-count strong {
        font-size: 23px;
    }

    .forms-count span {
        margin-top: 0;
    }

    .forms-simple-list {
        border-radius: 12px;
    }
}/* =========================================================
   FINAL ABOUT AMYAPCI-REC PAGE
   ========================================================= */


/* ---------------------------------------------------------
   General
   --------------------------------------------------------- */

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;

    color: #0f7650;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Overview
   --------------------------------------------------------- */

.rec-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.rec-overview-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, 0.75fr);

    gap: 70px;
    align-items: center;
}

.rec-overview-content h2 {
    max-width: 750px;

    margin-bottom: 20px;

    color: #173d2b;
    font-size: 36px;
    line-height: 1.2;
}

.rec-overview-content p {
    max-width: 800px;

    margin-bottom: 15px;

    color: #617268;
    line-height: 1.8;
}

.rec-overview-logo {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 370px;
}

.rec-about-logo-wrap {
    width: 320px;
    height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #f5faf6 0%,
            #edf5ef 55%,
            transparent 72%
        );
}

.rec-about-logo-wrap img {
    width: 285px;
    height: 285px;

    display: block;
    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 24px
            rgba(20, 67, 43, 0.16)
        );
}

.rec-established-badge {
    position: absolute;
    right: 10px;
    bottom: 15px;

    min-width: 110px;

    padding: 14px 18px;

    background: #0e5839;
    color: #ffffff;

    border-radius: 13px;

    text-align: center;

    box-shadow:
        0 12px 24px
        rgba(17, 73, 48, 0.18);
}

.rec-established-badge span {
    display: block;

    margin-bottom: 3px;

    font-size: 10px;
    letter-spacing: 1px;

    text-transform: uppercase;

    opacity: 0.8;
}

.rec-established-badge strong {
    display: block;

    font-size: 25px;
}


/* ---------------------------------------------------------
   Ethical Principles
   --------------------------------------------------------- */

.rec-principles-section {
    padding: 75px 0;

    background: #f5f8f6;
}

.rec-principles-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.rec-principle-card {
    padding: 27px;

    background: #ffffff;

    border:
        1px solid #e1e9e4;

    border-radius: 15px;
}

.rec-principle-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    background: #edf6f0;

    border-radius: 11px;

    font-size: 23px;
}

.rec-principle-card h3 {
    margin-bottom: 8px;

    color: #203c2d;
    font-size: 17px;
}

.rec-principle-card p {
    color: #6a796f;
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   Vision
   --------------------------------------------------------- */

.rec-vision-section {
    padding: 80px 0;

    background: #ffffff;
}

.rec-vision-card {
    position: relative;

    overflow: hidden;

    padding: 60px;

    background:
        linear-gradient(
            135deg,
            #0d5135,
            #156c48
        );

    border-radius: 22px;

    color: #ffffff;
}

.rec-vision-card::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -100px;
    top: -160px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.06);
}

.rec-light-kicker {
    color: #efd27a;
}

.rec-vision-card h2 {
    position: relative;
    z-index: 2;

    margin-bottom: 16px;

    font-size: 36px;
}

.rec-vision-card p {
    position: relative;
    z-index: 2;

    max-width: 950px;

    margin: 0;

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

    font-size: 18px;
    line-height: 1.9;
}


/* ---------------------------------------------------------
   Mission
   --------------------------------------------------------- */

.rec-mission-section {
    padding: 80px 0;

    background: #f5f8f6;
}

.rec-mission-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.rec-mission-card {
    display: flex;

    gap: 20px;

    padding: 27px;

    background: #ffffff;

    border:
        1px solid #e1e9e4;

    border-radius: 15px;
}

.rec-mission-wide {
    grid-column: 1 / -1;
}

.mission-number {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0f6845;
    color: #ffffff;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;
}

.rec-mission-card h3 {
    margin: 2px 0 8px;

    color: #203c2d;
    font-size: 18px;
}

.rec-mission-card p {
    color: #697a70;

    font-size: 14px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   Logo Explanation
   --------------------------------------------------------- */

.rec-logo-section {
    padding: 80px 0;

    background: #ffffff;
}

.rec-logo-feature {
    display: grid;

    grid-template-columns:
        minmax(260px, 0.75fr)
        minmax(0, 1.25fr);

    gap: 65px;

    align-items: center;

    margin-bottom: 45px;

    padding: 38px;

    background: #f0f6f2;

    border-radius: 20px;
}

.rec-logo-display {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rec-logo-display img {
    width: min(100%, 290px);

    display: block;

    filter:
        drop-shadow(
            0 18px 25px
            rgba(15, 78, 50, 0.18)
        );
}

.rec-logo-intro h3 {
    margin-bottom: 13px;

    color: #173d2b;

    font-size: 27px;
}

.rec-logo-intro p {
    margin-bottom: 12px;

    color: #63756a;

    line-height: 1.8;
}

.rec-symbol-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.rec-symbol-card {
    padding: 24px;

    border:
        1px solid #e1e9e4;

    border-radius: 14px;

    background: #ffffff;
}

.rec-symbol-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 10px;

    background: #edf6f0;

    font-size: 21px;
}

.rec-symbol-card h3 {
    margin-bottom: 7px;

    color: #203c2d;

    font-size: 16px;
}

.rec-symbol-card p {
    color: #6b7b72;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .rec-overview-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .rec-overview-logo {
        min-height: auto;
    }

    .rec-established-badge {
        right: calc(50% - 190px);
    }

    .rec-principles-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rec-symbol-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 750px) {

    .rec-overview-section,
    .rec-principles-section,
    .rec-vision-section,
    .rec-mission-section,
    .rec-logo-section {
        padding: 55px 0;
    }


    .rec-overview-content h2 {
        font-size: 29px;
    }


    .rec-about-logo-wrap {
        width: 230px;
        height: 230px;
    }

    .rec-about-logo-wrap img {
        width: 205px;
        height: 205px;
    }

    .rec-established-badge {
        position: relative;

        right: auto;
        bottom: auto;

        margin-left: -35px;
    }


    .rec-principles-grid {
        grid-template-columns: 1fr;
    }


    .rec-vision-card {
        padding: 35px 27px;

        border-radius: 16px;
    }

    .rec-vision-card h2 {
        font-size: 29px;
    }

    .rec-vision-card p {
        font-size: 16px;
    }


    .rec-mission-grid {
        grid-template-columns: 1fr;
    }

    .rec-mission-wide {
        grid-column: auto;
    }


    .rec-logo-feature {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 28px 22px;
    }


    .rec-symbol-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .rec-overview-logo {
        flex-direction: column;
    }

    .rec-established-badge {
        margin:
            -15px 0 0;
    }


    .rec-mission-card {
        gap: 15px;

        padding: 21px;
    }


    .mission-number {
        width: 42px;
        height: 42px;
    }


    .rec-logo-intro h3 {
        font-size: 23px;
    }

}/* ==========================================================
   ABOUT AMYAPCI-REC FINAL CARD DESIGN
   ========================================================== */

.about-main-section,
.about-vm-section,
.about-commitment-section,
.about-logo-section,
.about-committee-section {
    padding: 60px 0;
}


/* HERO */

.about-hero {
    padding: 65px 0;

    background:
        linear-gradient(
            135deg,
            #edf7f0,
            #f8fbf9
        );

    border-bottom:
        1px solid #dce8df;
}

.about-eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: #0c7046;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.about-hero h1 {
    margin: 0 0 10px;

    color: #133f2a;

    font-size: clamp(
        34px,
        5vw,
        48px
    );
}

.about-hero p {
    margin: 0;

    color: #557063;

    font-size: 16px;
}


/* ==========================================================
   OVERVIEW CARD
   ========================================================== */

.about-overview-card {
    display: grid;

    grid-template-columns:
        250px minmax(0, 1fr);

    gap: 35px;

    padding: 35px;

    background: #ffffff;

    border:
        1px solid #dce7df;

    border-radius: 20px;

    box-shadow:
        0 10px 30px
        rgba(16, 64, 42, 0.07);
}

.about-overview-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #edf7f0,
            #ffffff
        );
}

.about-overview-logo img {
    width: 210px;
    max-width: 100%;

    display: block;

    object-fit: contain;
}

.about-card-heading {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 18px;
}

.about-heading-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: #eaf5ed;

    font-size: 22px;
}

.about-small-label {
    display: block;

    margin-bottom: 3px;

    color: #168055;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card-heading h2 {
    margin: 0;

    color: #173f2b;

    font-size: 25px;
}

.about-overview-content p {
    margin: 0 0 13px;

    color: #596d62;

    line-height: 1.75;
}


/* ==========================================================
   VISION + MISSION
   ========================================================== */

.about-vm-section {
    background: #f6f9f7;
}

.about-vm-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 24px;
}

.about-vm-card {
    padding: 30px;

    border:
        1px solid #d7e7dc;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #eef8f1,
            #ffffff
        );

    box-shadow:
        0 8px 22px
        rgba(17, 74, 47, 0.05);
}

.about-vm-title {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 17px;
}

.about-vm-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dff1e4;

    font-size: 23px;
}

.about-vm-title h2 {
    margin: 0;

    color: #17432d;

    font-size: 25px;
}

.vision-card > p {
    padding-left: 17px;

    border-left:
        4px solid #d5a720;

    color: #4f6559;

    font-size: 15px;
    line-height: 1.9;
}


/* MISSION LIST */

.mission-intro {
    margin-bottom: 15px;

    color: #596f62;
}

.mission-list {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.mission-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}

.mission-item > span {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #126944;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}

.mission-item strong {
    display: block;

    margin-bottom: 2px;

    color: #244736;

    font-size: 14px;
}

.mission-item p {
    margin: 0;

    color: #687a70;

    font-size: 13px;
    line-height: 1.55;
}


/* ==========================================================
   SECTION TITLES
   ========================================================== */

.about-section-title {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 30px;
}

.about-section-title.centered {
    text-align: center;
}

.about-title-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e7f4eb;

    font-size: 22px;
}

.about-section-title h2 {
    margin: 0 0 4px;

    color: #17432d;

    font-size: 28px;
}

.about-section-title p {
    margin: 0;

    color: #75847c;

    font-size: 14px;
}


/* ==========================================================
   COMMITMENT CARDS
   ========================================================== */

.about-commitment-section {
    background: #ffffff;
}

.commitment-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.commitment-card {
    padding: 25px 20px;

    text-align: center;

    border:
        1px solid #d8e7dd;

    border-radius: 17px;

    background:
        linear-gradient(
            180deg,
            #f3faf5,
            #ffffff
        );
}

.commitment-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 13px;

    border-radius: 50%;

    background: #dff1e4;

    font-size: 25px;
}

.commitment-card h3 {
    margin: 0 0 7px;

    color: #214534;

    font-size: 16px;
}

.commitment-card p {
    margin: 0;

    color: #68796f;

    font-size: 13px;

    line-height: 1.65;
}


/* ==========================================================
   LOGO SECTION
   ========================================================== */

.about-logo-section {
    background: #f6f9f7;
}

.logo-explanation-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        260px
        minmax(0, 0.65fr);

    gap: 25px;

    align-items: center;

    margin-bottom: 35px;

    padding: 30px;

    border:
        1px solid #dce8df;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 8px 25px
        rgba(16, 69, 44, 0.05);
}

.logo-introduction-card h3,
.logo-summary-card h3 {
    margin-top: 0;

    color: #17432d;

    font-size: 22px;
}

.logo-introduction-card p,
.logo-summary-card p {
    color: #63766b;

    line-height: 1.7;
}

.about-logo-display {
    display: flex;

    align-items: center;
    justify-content: center;
}

.about-logo-display img {
    width: 230px;
    height: 230px;

    max-width: 100%;

    object-fit: contain;

    display: block;
}


/* ==========================================================
   SYMBOL CARDS
   ========================================================== */

.logo-symbol-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}

.logo-symbol-card {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 20px;

    border:
        1px solid #dce6df;

    border-radius: 15px;

    background: #ffffff;
}

.symbol-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eaf5ed;

    font-size: 20px;
}

.logo-symbol-card h3 {
    margin: 0 0 5px;

    color: #214735;

    font-size: 15px;
}

.logo-symbol-card p {
    margin: 0;

    color: #6c7d73;

    font-size: 12.5px;

    line-height: 1.55;
}


/* ==========================================================
   COMMITTEE SECTION
   ========================================================== */

.about-committee-section {
    background: #ffffff;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1000px) {

    .about-overview-card {
        grid-template-columns:
            190px minmax(0, 1fr);
    }

    .about-overview-logo img {
        width: 170px;
    }

    .commitment-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .logo-explanation-layout {
        grid-template-columns:
            1fr 220px;
    }

    .logo-summary-card {
        grid-column: 1 / -1;
    }

    .logo-symbol-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 760px) {

    .about-main-section,
    .about-vm-section,
    .about-commitment-section,
    .about-logo-section,
    .about-committee-section {
        padding: 45px 0;
    }

    .about-overview-card {
        grid-template-columns: 1fr;

        padding: 23px;
    }

    .about-overview-logo {
        padding: 10px;
    }

    .about-overview-logo img {
        width: 160px;
    }

    .about-vm-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .logo-explanation-layout {
        grid-template-columns: 1fr;

        padding: 22px;
    }

    .about-logo-display img {
        width: 170px;
        height: 170px;
    }

    .logo-symbol-grid {
        grid-template-columns: 1fr;
    }

    .about-section-title {
        align-items: flex-start;
    }

}


@media (max-width: 480px) {

    .about-hero {
        padding: 45px 0;
    }

    .about-vm-card {
        padding: 22px;
    }

    .mission-item {
        gap: 10px;
    }

    .logo-symbol-card {
        padding: 17px;
    }

}

/* ==========================================================
   AMYAPCI-REC ABOUT PAGE V2
   Unique class names prevent conflicts with older About styles.
   Visual language matches the site's existing cards, page hero,
   green palette, borders, and rounded corners.
   ========================================================== */

.rec-about-v2 {
    background: #f7f9f7;
}

.rec-about-v2-section {
    padding: 68px 0;
}

.rec-about-v2-soft {
    background: #f1f6f3;
    border-top: 1px solid #e2ebe5;
    border-bottom: 1px solid #e2ebe5;
}

.rec-about-v2-kicker {
    display: block;
    margin-bottom: 4px;
    color: #14804f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.15px;
}

.rec-about-v2-heading,
.rec-about-v2-card-title,
.rec-about-v2-section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rec-about-v2-heading-icon,
.rec-about-v2-round-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #edf6f0;
    color: #0f623f;
    font-size: 22px;
}

.rec-about-v2-round-icon {
    border-radius: 50%;
}

.rec-about-v2-heading h2,
.rec-about-v2-card-title h2,
.rec-about-v2-section-heading h2 {
    margin: 0;
    color: #173d2b;
}

.rec-about-v2-section-heading {
    margin-bottom: 28px;
}

.rec-about-v2-section-heading p {
    margin: 5px 0 0;
    color: #64748b;
}

.rec-about-v2-centered {
    justify-content: center;
    text-align: center;
}


/* OVERVIEW */

.rec-about-v2-overview {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    background: #ffffff;
    border: 1px solid #e0e8e3;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(20, 61, 43, 0.06);
}

.rec-about-v2-overview-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 245px;
    padding: 20px;
    background: #edf6f0;
    border-radius: 16px;
}

.rec-about-v2-overview-logo img {
    width: 175px;
    height: 175px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.rec-about-v2-established {
    margin-top: 14px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d7e7dc;
    color: #0f623f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.rec-about-v2-overview-copy .rec-about-v2-heading {
    margin-bottom: 18px;
}

.rec-about-v2-overview-copy p {
    margin: 0 0 13px;
    color: #607267;
    line-height: 1.75;
}

.rec-about-v2-overview-copy p:last-child {
    margin-bottom: 0;
}


/* VISION + MISSION */

.rec-about-v2-vm-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: stretch;
}

.rec-about-v2-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #dfe8e2;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(20, 61, 43, 0.05);
}

.rec-about-v2-card-title {
    margin-bottom: 18px;
}

.rec-about-v2-vision-text {
    margin: 0;
    padding: 18px 0 18px 19px;
    border-left: 4px solid #d4a72c;
    color: #566b5f;
    font-size: 15px;
    line-height: 1.85;
}

.rec-about-v2-mission-intro {
    margin: 0 0 15px;
    color: #64748b;
}

.rec-about-v2-mission-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rec-about-v2-mission-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #e5ece7;
    border-radius: 12px;
    background: #fafcfb;
}

.rec-about-v2-mission-item > span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0f623f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.rec-about-v2-mission-item strong {
    display: block;
    margin-bottom: 3px;
    color: #263c31;
    font-size: 14px;
}

.rec-about-v2-mission-item p {
    margin: 0;
    color: #6b7c72;
    font-size: 13px;
    line-height: 1.55;
}


/* ETHICAL COMMITMENT */

.rec-about-v2-commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rec-about-v2-feature-card {
    padding: 25px 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e0e8e3;
    border-radius: 16px;
    transition: 0.2s ease;
}

.rec-about-v2-feature-card:hover {
    transform: translateY(-3px);
    border-color: #b6d2c1;
    box-shadow: 0 10px 24px rgba(20, 61, 43, 0.06);
}

.rec-about-v2-feature-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border-radius: 13px;
    background: #edf6f0;
    font-size: 24px;
}

.rec-about-v2-feature-card h3 {
    margin: 0 0 7px;
    color: #203a2c;
    font-size: 16px;
}

.rec-about-v2-feature-card p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}


/* LOGO MEANING */

.rec-about-v2-logo-intro {
    max-width: 900px;
    margin: 0 auto 28px;
    padding: 26px 28px;
    background: #ffffff;
    border: 1px solid #dfe8e2;
    border-left: 4px solid #0f623f;
    border-radius: 14px;
}

.rec-about-v2-logo-intro h3 {
    margin: 0 0 10px;
    color: #173d2b;
    font-size: 21px;
}

.rec-about-v2-logo-intro p {
    margin: 0 0 10px;
    color: #607267;
    line-height: 1.7;
}

.rec-about-v2-logo-intro p:last-child {
    margin-bottom: 0;
}

.rec-about-v2-symbol-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rec-about-v2-symbol-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 150px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #dfe8e2;
    border-radius: 14px;
}

.rec-about-v2-symbol-card > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #edf6f0;
    font-size: 21px;
}

.rec-about-v2-symbol-card h3 {
    margin: 0 0 5px;
    color: #203a2c;
    font-size: 15px;
}

.rec-about-v2-symbol-card p {
    margin: 0;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.6;
}


/* Committee cards already use the website's shared committee styling.
   Only add a little breathing room here. */

.rec-about-v2 .committee-grid {
    margin-top: 5px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .rec-about-v2-overview {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .rec-about-v2-overview-logo img {
        width: 150px;
        height: 150px;
    }

    .rec-about-v2-commitment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rec-about-v2-symbol-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {

    .rec-about-v2-section {
        padding: 48px 0;
    }

    .rec-about-v2-overview {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .rec-about-v2-overview-logo {
        min-height: auto;
    }

    .rec-about-v2-overview-logo img {
        width: 135px;
        height: 135px;
    }

    .rec-about-v2-vm-grid,
    .rec-about-v2-commitment-grid,
    .rec-about-v2-symbol-grid {
        grid-template-columns: 1fr;
    }

    .rec-about-v2-card {
        padding: 22px;
    }

    .rec-about-v2-section-heading {
        align-items: flex-start;
    }

    .rec-about-v2-centered {
        align-items: center;
    }

    .rec-about-v2-symbol-card {
        min-height: 0;
    }
}

@media (max-width: 480px) {

    .rec-about-v2-heading,
    .rec-about-v2-card-title,
    .rec-about-v2-section-heading {
        gap: 10px;
    }

    .rec-about-v2-heading-icon,
    .rec-about-v2-round-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 19px;
    }

    .rec-about-v2-logo-intro {
        padding: 21px;
    }
}
