/* FORCE LIGHT MODE */
:root {
    color-scheme: light;
}

/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: auto; 
    padding: 40px;
}

/* --- Header & Logo Styling --- */
header {
    /* Kept your preference: Reduced from 60px to 20px */
    margin-bottom: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
}

.logo-img {
    /* Kept your preference: 160px width */
    width: 160px; 
    height: auto;
    margin-bottom: 5px;
    margin-left: 10px;
    display: block;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #003366; 
    letter-spacing: 0.5px;
    padding-left: 5px;
}

/* --- Main Content Styling --- */
main {
    margin-left: 22%;
    max-width: 750px;
    /* Kept your preference: Reduced to 10px */
    padding-top: 10px; 
}

main p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

/* --- Footer Styling --- */
footer {
    margin-top: 150px; 
    margin-left: 50%;
    width: 50%;
    padding-bottom: 20px;
}

hr {
    border: 0;
    border-top: 1px solid #666;
    margin-bottom: 25px;
}

footer p {
    font-size: 1.1rem;
    color: #222;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    body {
        /* Reduced padding so content has more room on small screens */
        padding: 25px;
    }

    header {
        margin-bottom: 50px; /* Adjust this number (e.g., 60px) if you want even more space */
    }

    main {
        margin-left: 0;
        padding-top: 10px;
    }

    /* THE FIX: Shrink text to 1rem (approx 85% of desktop size) */
    main p {
        font-size: 1rem; 
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    footer {
        margin-left: 0;
        width: 100%;
        /* Bring footer much closer on mobile so it doesn't fall off screen */
        margin-top: 40px; 
        padding-top: 20px;
    }

    footer p {
        /* Slightly smaller footer text for mobile */
        font-size: 0.95rem; 
    }
    
    hr {
        margin-bottom: 15px;
    }
}


