@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');

footer {
    width: 100%;
    background-color: #ffafcc;
    color: #333;
    padding: 60px 0 30px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-section h2 {
    font-family: 'Tangerine';
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
}

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

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 5px;
    /* Slight movement effect */
}

.social-icons a {
    display: inline-block;
    font-size: 24px;
    color: #333;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.copyright {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 40px;
    }
}