/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Banner Styling */
.banner {
    background: #ffffff; /* White background */
    padding: 2rem 0;
}

.banner-img {
    max-width: 100%;
    height: auto;
    max-height: 250px; /* Larger size for desktop */
    cursor: pointer; /* Indicate the banner is clickable */
}

/* Main Content Styling */
main {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

h1, h2, h3 {
    color: #005566;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
}

p, ul {
    font-size: 1rem;
    color: #444;
}

ul {
    padding-left: 1.5rem;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer Styling */
.footer {
    background: #6a1b9a; /* Deep purple background */
    color: #ffffff; /* White text */
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff; /* Explicitly white */
}

.footer a {
    color: #ffffff; /* White links */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: #e1bee7; /* Light purple on hover for contrast */
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #ffffff; /* Explicitly white */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-img {
        max-height: 200px; /* Larger size for mobile */
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    main {
        padding: 1.5rem;
    }
}