.footer {
    background-color: #0d1631;
    color: #fff;
    padding: 3rem;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-section h2 {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #f39c12;
    display: inline-block;
    padding-bottom: 0.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
    cursor: pointer;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.footer-section p {
    margin: 0.5rem 0;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.footer-icon {
    text-decoration: none;
    background-color: #0d1631;
    border-radius: 50%;
    border: 1px solid white;
    color: white;
    display: inline-flex;
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.footer-icon:hover {
    background-color: #f39c12;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input input {
    flex: 1;
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
}

.newsletter-input button {
    background-color: #f39c12;
    color: #0d0e11;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
    color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-container {
        gap: 1rem;
    }

    .newsletter-input {
        flex-direction: column;
    }

    .newsletter-input input {
        width: 100%;
    }

    .newsletter-input button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        max-width: 90%;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}
