/* Footer Styles */
.footer-container {
    background-color: #f5e1e1; /* light background */
    color: #555; /* Dark text color for contrast */
    padding: 40px 20px; /* Top/bottom and left/right padding */
    font-size: 1rem;
    font-family: Arial, sans-serif; /* General font */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto; /* Center align the content */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-disclaimer {
    text-align: left;
}

.footer-disclaimer h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #555; /* White for headings */
}

.footer-disclaimer p {
    font-size: 0.9rem; /* Smaller disclaimer text */
    line-height: 1.6;
    color: #555; /* Lighter gray for readability */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-social {
    flex: 1;
}

.footer-social h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.social-link {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.footer-nav h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-nav ul li a:hover {
    color: #ff69b4;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #555;
}

.footer-copyright p {
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav ul {
        justify-content: center;
    }
}
