/* Footer Styling */
.footer {
    background-color: #a89b9d;
    color: #fff;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.footer-section h3 {
    /* color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px; */
    color: white;
    padding: 10px 0;
    text-shadow: 1px 1px 2px black;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.5;
    color: white;
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.social-icon i {
    margin-right: 10px;
    font-size: 20px;
}

/* Hover Effects */
.social-icon:hover {
    color: #FFD700;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid #333;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        padding: 10px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    .footer a {
        margin: auto;
    }
}
