/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
} */

footer {
    background-color: pink;
    color: black;
    padding: 40px 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: black;
}

.footer-section p, .footer-section a {
    color: gray;
    text-decoration: none;
}

.footer-section a:hover {
    color: #000000;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-media li {
    display: inline-block;
}

.social-media a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #000000;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    flex: 1;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #FF10F0;
    border: none;
    border-radius: 5px;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #ff69b4;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #000000;
    padding-top: 10px;
}
