* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background: linear-gradient(90deg, #f8e1e9, #f5f5f5);
    color: #333;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.footer-section h3 {
    font-size: 20px;
    color: #d68aa6;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Cormorant", serif;
}

.footer-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

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

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

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

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

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input[type="email"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
}

.newsletter button {
    padding: 10px 20px;
    background: #d68aa6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #c07a94;
}

.social-links a {
    color: #555;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d68aa6;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter input[type="email"] {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .social-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}