.site-footer {
    flex-shrink: 0;
    bottom: 0;
    width: 100%;
    background-color: #104788;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.hamburger {
    display: none;
    font-size: 2em;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 1001;
}

.news-background {
    width: 100%;
    background-color: #104788; 
    padding: 30px 0; 
}

.news-container {
    max-width: 90%; 
    margin: 0 auto; 
    padding: 20px;
    background-color: transparent; 
    border-radius: 10px;
    position: relative;
}

.news-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    outline: 2px solid #104788;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-item h2 {
    color: #333;
    margin-bottom: 10px;
}

.news-item p {
    color: #666;
    line-height: 1.6;
}

.news-item date {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.9em;
    color: #999;
    margin: 0;
    text-align: right;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.empty-section {
    width: 100%;
    background-color: white; 
    height: 50px; 
    margin-top: 30px;
}

@media (min-width: 769px) {
    .site-footer {
        position: fixed;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }

    .logo {
        order: 1;
        margin-right: 0;
    }

    .hamburger {
        display: block;
        order: 2;
    }

    nav {
        display: none;
        width: 100%;
        position: absolute; 
        top: 60px; 
        left: 0;
        background: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000; 
    }

    nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: left;
        padding: 10px;
        margin: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        display: block;
        padding: 10px;
        width: 100%;
        text-align: left;
    }

    .about-section {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .about-text, .about-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
    }

    .site-footer {
        position: relative;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-item {
        margin: 10px 0;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }

    .social-links a {
        margin: 0 10px;
    }
}