/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Ensure the background covers the entire page */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #F2F2F2; /* 60% Background */
    color: #333; /* Neutral text color for readability */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Navigation Bar */
.navbar {
    background-color: #A41034; /* 10% Accent */
    color: #fff; /* White text for contrast */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%; /* Make the logo fit the height of the navbar */
    max-height: 65px; /* Optional: Set a maximum height */
    width: auto; /* Maintain aspect ratio */
}

/* Navigation Links */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0 auto; /* Center the nav menu */
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #fff; /* White for consistency */
    padding: 0.5rem 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    background-color: #004a99; /* 30% Accent */
    border-radius: 5px;
}

/* Content Container */
.content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8); /* Slight transparency for readability */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Text Column */
.text-column {
    flex: 2;
    margin-bottom: 2rem;
}

.text-column h1 {
    font-size: 2rem;
    color: #002147; /* Dark navy blue */
    margin-bottom: 1rem;
}

.text-column h2 {
    font-size: 1.5rem;
    color: #A41034; /* 10% Accent */
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.text-column p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333; /* Neutral text color */
    margin-bottom: 1rem;
}

.text-column ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #333; /* Neutral text color */
}

.text-column ul li {
    margin-bottom: 0.5rem;
}

/* Image Column */
.image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Adds depth to the image */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-column img:hover {
    transform: scale(1.05); /* Slight zoom-in effect on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Footer Section */
.footer {
    background-color: #A41034; /* 10% Accent */
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #004a99; /* 30% Accent */
}

.social-media a {
    display: inline-block;
    margin: 0 0.5rem;
}

.social-media img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.social-media img:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        padding: 1rem;
    }

    .text-column {
        flex: 1;
    }

    .image-column {
        flex: 1;
        margin-top: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center; /* Center the nav menu items */
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .content-container {
        padding: 1rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}