body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
img{
    max-height: 512px;
}
.article-image {
    float: left; /* Float the image to the left */
    margin-right: 20px; /* Add some space to the right of the image */
    margin-bottom: 20px; /* Add some space below the image */
    max-width: 512px; /* Set a maximum width for the image */

}
/* Clear the float after the image so subsequent elements don't wrap around it */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
/* Default Link Style (for all links, including navigation) */
a {
    color: #003366; /* A vibrant blue for primary links */
    text-decoration: none; /* Remove default underline */
    transition: color 0.3s ease, text-decoration-color 0.3s ease; /* Smooth transitions */
    border-bottom: 2px solid transparent; /* Placeholder for underline effect */
}

/* Link Hover State */
a:hover {
    color: #0056b3; /* Slightly darker blue on hover */
    border-bottom-color: #007bff; /* Reveal a colored underline on hover */
    text-decoration: none; /* Remove default underline */
}
/* Link Focus State (for accessibility) */
a:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* Add a focus ring */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}
.container-full-article{
    margin:0px;
    max-width: 1200px;
    padding: 20px;
    flex: 1;
}
.header {
    text-align: center;
    padding: 20px 0;
    background-color: #005566;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-bottom: 5px solid #003366;
}
.header a {
    color: white; /* A vibrant blue for primary links */
    text-decoration: none; /* Remove default underline */
    transition: color 0.3s ease, text-decoration-color 0.3s ease; /* Smooth transitions */
    border-bottom: 2px solid transparent; /* Placeholder for underline effect */
}
.header a:hover {
    color: #fcdc52; /* Slightly darker blue on hover */
   /* border-bottom-color: #007bff;  Reveal a colored underline on hover */
    text-decoration: none; /* Remove default underline */
}
.header h1 {
    font-size: 3em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.header h1 a {
    color: white; /* A vibrant blue for primary links */
    text-decoration: none; /* Remove default underline */
    transition: color 0.3s ease, text-decoration-color 0.3s ease; /* Smooth transitions */
    border-bottom: 2px solid transparent; /* Placeholder for underline effect */
}

.header .motto {
    font-size: 1.2em;
    font-style: italic;
    margin-top: 10px;
}
.tabs {
    display: flex;
    justify-content: center;
    background-color: #003366;
    padding: 10px 0;
    margin-bottom: 20px;
}
.tab {
    padding: 15px 30px;
    color: white;
    cursor: pointer;
    font-size: 1.2em;
    text-transform: uppercase;
    transition: background-color 0.3s;
    border-right: 1px solid #f5f5f5;
}
.tab:last-child {
    border-right: none;
}
.tab:hover, .tab.active {
    background-color: #005566;
}
.content-wrapper {
    position: relative;
    min-height: 400px;
}
.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    visibility: hidden;
}
.content.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.content h2 {
    font-size: 2em;
    border-bottom: 2px solid #003366;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.content .article {
    font-size: .85em;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
    column-count: 2;
    column-gap: 20px;
    border-bottom: 2px solid #00336676;

}
.content .article h3 {
    font-size: 1.3em;
    margin: 0 0 10px;
}
.content .article p {
    margin: 0 0 10px;
}
.content .article a {
    color: #003366;
    text-decoration: none;
}
.content .article a:hover {
    text-decoration: underline;
}
.footer {
    visibility: hidden;
    background-color: #003366;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 1em;
    position: relative;
    width: 100%;
}
.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        align-items: center;
    }
    .tab {
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid #f5f5f5;
    }
    .content .article {
        column-count: 1;
    }
}
