﻿body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f2f4f8;
    margin: 0;
    padding: 10px;
    color: #000000;
}

.container {
    max-width: 850px;
    margin: auto;
}

h1 {
    color: #6bbf59;
    text-align: center;
    font-size: 34px;
    margin-bottom: 30px;
    padding-top: 0px;
}

.section {
    background: #ffffff;
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    /* Hover effect for nicer UI */
    .section:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    }

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #144a63;
}

p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.footer-note {
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
    color: #777;
}
.header-images {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 10px;
}

    .header-images img {
        height: 80px;
        max-width: 40%;
        object-fit: contain;
        margin-left: 40px;
        margin-right: 40px;
        margin-bottom: 0;
        padding-bottom: 0;
        display: block;
    }
