/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    width: 100%; /* Ensure the footer spans full width */
    box-sizing: border-box; /* Include padding and borders in width calculation */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-content {
    max-width: 60%;
    width: 100%; /* Prevent content from exceeding container width */
    box-sizing: border-box;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 14px;
    font-style: italic;
    color: #cdc9c9;
    margin-bottom: 20px;
}

.footer-contact {
    font-size: 14px;
}

.footer-contact h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    width: 100%; /* Ensure this spans full width */
    max-width: 300px; /* Adjust as needed for logo and icons */
    box-sizing: border-box;
}

.footer-logo {
    height: 200px;
    margin-bottom: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link img {
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease;
}

.social-link img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 10px;
    }

    .footer-content, .footer-bottom {
        max-width: 100%;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto; /* Center the logo on mobile */
    }
    .footer-social {
        justify-content: center;
    }

    .footer-content {
        padding-bottom: 20px;
    }

    .footer-bottom {
        align-items: center;
    }
}
