/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light background for contrast */
    color: #333; /* Neutral text color */
}

/* Header Section */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #2c3e50; /* Dark blue-gray for a modern look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure the header stays on top */
}

.header .logo img {
    height: 150px; /* Adjust height to fit the header */
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
}

#nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

#nav-menu li {
    display: inline-block;
}

#nav-menu a {
    text-decoration: none;
    color: #ffffff; /* White text for contrast */
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

#nav-menu a:hover {
    color: #43a047; /* Green hover effect */
}


/* News Updates Section */
.news-updates {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff; /* White background for clarity */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Section Heading */
.news-updates .heading {
    margin: 30px 0;
    text-align: left;
}

.news-updates .heading h1 {
    font-size: 1.8rem;
    color: #2c3e50; /* Darker blue for emphasis */
    margin-bottom: 10px;
    border-left: 5px solid #43a047; /* Accent color */
    padding-left: 15px;
}

/* News Content */
.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.news-details {
    background: #f9f9f9; /* Light gray background for separation */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for individual news blocks */
}

.news-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Image shadow for emphasis */
}

/* News Text */
.news-details p {
    font-size: 1rem;
    color: #555; /* Neutral color for text */
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-details p:last-child {
    margin-bottom: 0; /* Remove extra margin for the last paragraph */
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-updates {
        padding: 15px;
    }

    .news-updates .heading h1 {
        font-size: 1.5rem;
    }

    .news-details {
        padding: 15px;
    }

    .news-details p {
        font-size: 0.9rem;
    }

    .news-image {
        max-height: 200px;
    }
}
