.site-footer {
    background-color: #f8f9fa;
    padding: 40px 20px 20px;
    border-top: 1px solid #ddd;
    font-family: Arial, sans-serif;
    color: #333;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-left {
    flex: 0 0 150px;
}

.footer-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ccc;
}

.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-right h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #003366;
}

.footer-right p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-socials a {
    font-size: 1.5rem;
    color: #003366;
    transition: color 0.3s, transform 0.2s;
}

.footer-socials a:hover {
    color: #007bff;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #666;
}
