body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f5; /* #f0f0f5 Light background color for all pages */
}
/*body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f0f0f5; /* Light background color for all pages */
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
/*} */
#navbar {
    background-color: #da2525;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Segoe UI', sans-serif;
}

#navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#navbar ul li {
    margin: 0 20px;
}

#navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

#navbar ul li a:hover {
    background-color: #555;
    transform: scale(1.1);
}

/*.container {
    display: flex;
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 0;
}

.column {
    flex: 1;
    padding: 20px;
}*/

/* Container for the columns */
.container {
    padding: 100px 50px;
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
}

/* Specific styles for each column */
/*.column {
    flex-basis: 0;        /* Base size of each column */
    flex-grow: 1;         /* Columns grow to fill available space equally */
    flex-shrink: 1;       /* Allows columns to shrink if necessary */
    margin: 1px;         /* Add spacing between columns */
}*/

/* Specific styles for each column */
.column:nth-child(1) {
flex: 2; /* First column width */
}
.column:nth-child(2) {
flex: 4; /* Second column width */
}
.column:nth-child(3) {
flex: 3; /* Third column width */
}


/* Ensure responsiveness on smaller screens */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack columns vertically on smaller screens */
    }
}

.column img {
    border-radius: 0; /* Remove circular shape */
    width: 350px; /* Set the desired width */
    height: 380px; /* Set the desired height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for visual appeal */
    transition: transform 0.3s ease; /* Smooth hover transition */
}

.column img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}


#about{
    padding: 20px;
    margin-bottom: 0;
}

#about {
    border-left: 5px solid maroon;
    background-color: #fff;
    padding-left: 25px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow for a modern look */
    border-collapse: separate; /* Prevents the collapse of borders */
    border-spacing: 0; /* Ensures no space between borders */
}

#about h1, #contact h1 {
    font-size: 26px;
    color: maroon;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    transition: transform 0.3s ease;
}

#about p, #contact p {
    font-size: 16px;
    line-height: 1.75;
    color: #212f3c;
    font-weight: bold;  
    transition: transform 0.3s ease;
}


#contact {
    background-color: #fff;
    border-left: 5px solid maroon;
    padding-left: 25px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow for a modern look */
    border-collapse: separate; /* Prevents the collapse of borders */
    border-spacing: 0; /* Ensures no space between borders */
}

#contact a {
    color: maroon;
    text-decoration: none;
    font-weight: bold;
}

#contact a:hover {
    text-decoration: underline;
}

#contact img {
    width: 60px;  /* Set a consistent width */
    height: 60px; /* Set a consistent height */
    object-fit: contain;  /* Ensures the image fits without distortion */
    margin-right: 10px;
    vertical-align: middle;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.8;
}

#contact img:hover {
    opacity: 1;
    transform: scale(1.1); /* Slight zoom effect on hover */
}

#contact p.note {
    color: #004080; /* Dark blue color for the note text */
    font-weight: bold;
    text-decoration: underline; /* Underline the note text */
    padding-bottom: 5px;
    transition: transform 0.3s ease;
}

#contact p.note:hover {
    transform: scale(1.02); /* Slight zoom effect on hover */
}

#news {
    text-align: center;
    margin-top: 0;
}

#news-table {
    width: 100%; /* Full width within the container */
    max-width: 800px; /* Set a max width to align with the style */
    margin: 20px auto;
    padding: 20px;
    border-left: 5px solid maroon;
    background-color: #fff;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow for a modern look */
    border-collapse: separate; /* Prevents the collapse of borders */
    border-spacing: 0; /* Ensures no space between borders */
}

#news-table th, #news-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    color: #333;
}

#news-table th {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#news-table tr:last-child td {
    border-bottom: none; /* Removes the border for the last row */
}

#news-table tr:hover {
    background-color: #f9f9f9; /* Soft background color on hover */
}

#news-table td:first-child {
    font-weight: bold;
    color: maroon;
}

.pdf-container {
    margin: 40px auto;
    max-width: 1000px; /* Limit the width of the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern look */
    border-radius: 8px; /* Rounded corners for a smooth effect */
}


 /*Apply zoom effect on hover for all text elements*/
h1, h2, li, p, a{
    transition: transform 0.3s ease;
}

h1:hover, h2:hover, li:hover, p:hover, a:hover {
    transform: scale(1.02);
}

/*/* Apply zoom effect on hover for all images */
img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}
