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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #0056b3;
    position: relative;
    padding-bottom: 0.75rem;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0056b3;
}

p {
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.7;
}

.call-to-action {
    text-align: center;
    margin-top: 2rem;
    padding: 0.5rem;
}

.call-to-action a {
    background-color: #0056b3;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.call-to-action a:hover {
    background-color: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0 4rem; /* Adjusted padding since nav is gone */
    text-align: center;
    position: relative;
}

.hero-content {
    background-color: rgba(0, 86, 179, 0.7);
    padding: 2rem;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 80%;
    animation: fadeIn 1s ease-out;
}

.hero-tagline {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0;
    text-align: center;
}

.about {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.site-footer {
    text-align: center;
    background-color: #f0f2f5;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 5rem 0 3rem; /* Adjusted padding for mobile */
    }
    
    .hero-content {
        padding: 1.5rem;
        max-width: 90%;
    }
}