/* ===== ABOUT US PAGE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: Calibri, Arial, Helvetica, sans-serif;
    background-color: #fff8eb;
    margin: 0;
    padding: 0;
    color: rgb(26, 109, 134);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

h1 {
    color: #1f99be;
    text-align: left;
    font-size: 2.2em;
    font-weight: bold;
    margin: 18px 0 18px 18px;
    flex-shrink: 0;
}

.main-logo {
    height: 1.2em;
    vertical-align: middle;
    margin-right: 10px;
}

.container-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    width: 100%;
    padding: 20px 16px 85px;
}

.about-container {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 920px;
    width: 100%;
}

.about-container h2 {
    color: #176d8a;
    font-size: 1.6em;
    margin-bottom: 18px;
    text-align: center;
    border-bottom: 2px solid #1f99be;
    padding-bottom: 10px;
}

.about-section { margin-bottom: 22px; }

.about-section h3 {
    color: #1f99be;
    font-size: 1.15em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-section h3 .icon { font-size: 1.2em; }

.about-section p {
    color: #333;
    line-height: 1.65;
    font-size: 0.95em;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.module-card {
    background: #f0fbff;
    border: 1px solid #e6f6fa;
    border-radius: 8px;
    padding: 14px 16px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.module-card:hover {
    border-color: #1f99be;
    box-shadow: 0 2px 10px rgba(31, 153, 190, 0.18);
}

.module-card h4 {
    color: #176d8a;
    font-size: 1em;
    margin-bottom: 5px;
}

.module-card p {
    color: #555;
    font-size: 0.88em;
    line-height: 1.5;
    margin: 0;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

/* ===== REPORTS SECTION ===== */
.reports-section {
    background: #fafeff;
    border: 1px solid #e0f0f5;
    border-radius: 10px;
    padding: 20px 22px !important;
}

.reports-intro {
    color: #444 !important;
    font-style: italic;
    margin-bottom: 4px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 14px;
}

.report-card {
    background: linear-gradient(135deg, #f5faff 0%, #eaf5fb 100%);
    border: 1px solid #cce8f0;
    border-left: 5px solid #1f99be;
    border-radius: 10px;
    padding: 18px 20px;
    transition: box-shadow 0.25s, transform 0.2s;
}

.report-card:hover {
    box-shadow: 0 4px 16px rgba(31, 153, 190, 0.22);
    transform: translateY(-2px);
}

.report-card h4 {
    color: #176d8a;
    font-size: 1.02em;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9eef5;
}

.report-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-card ul li {
    color: #444;
    font-size: 0.88em;
    line-height: 1.55;
    padding: 3px 0 3px 20px;
    position: relative;
}

.report-card ul li::before {
    content: "\25B8";
    color: #1f99be;
    font-size: 0.85em;
    position: absolute;
    left: 4px;
    top: 3px;
}

.tech-badge {
    background: #e6f6fa;
    color: #176d8a;
    border: 1px solid #1f99be;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.82em;
    font-weight: 600;
}

.back-link-container {
    text-align: center;
    margin-top: 22px;
}

.back-link {
    color: #1f99be;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.back-link:hover {
    border-bottom: 1px solid #1f99be;
}

/* ===== FOOTER ===== */
.footer {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #faf2e3;
    padding: 15px 18px;
    border-top: 1.5px solid #1f99be;
    font-size: 1em;
    color: #176d8a;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.footer-left {
    flex: 1;
    text-align: left;
    padding-left: 18px;
}

.footer-center {
    flex: 2;
    text-align: center;
    font-size: 0.98em;
}

.footer-right {
    flex: 1;
    text-align: right;
    padding-right: 18px;
}

.footer-logo {
    height: 85px;
    width: auto;
    border-radius: 6px;
    border: 1.5px solid #1f99be;
    position: absolute;
    right: 18px;
    bottom: 10px;
    z-index: 1002;
    background-color: #faf2e3;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-container { padding: 20px 18px; }
    .modules-grid { grid-template-columns: 1fr; }
    .reports-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 920px) {
    .reports-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .about-container h2 { font-size: 1.3em; }
    .about-container { padding: 16px 12px; }
}
