.site-footer {
    flex-shrink: 0;
    bottom: 0;
    position: fixed;
    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;
}

.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #104788;
}

.about-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.about-text {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text h2 {
    margin-bottom: 10px;
    font-size: 2em;
    color: #104788;
}

.about-text p {
    line-height: 1.6;
    color: #333;
}

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    margin-left: 3em;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0; 
    border: none;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .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;
        background-color: #e0e0e0;
    }

    .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;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 8em;
    }

    .nav-links {
        font-size: 0.9em;
    }

    .social-links img {
        width: 30px;
    }

    .about-text {
        padding: 20px;
    }

    .about-text h2 {
        font-size: 1.5em;
    }
}