
/* Footer */

:root {
    --primary-color: #003049;
    --secondary-color: #FCA311;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #ddd;
    --background-color: #2a2a2a;
}

/* Footer */
footer {
    background: var(--background-color);
    padding: 50px 2%;
    color: var(--light-gray);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.newsletter h3 {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 30px;
    background: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.newsletter-form button .icon{
    width: 20px;
    height: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info .icon {
    width: 50px;
    height: auto;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.footer-company {
    flex: 1;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links img {
    width: 24px;
    height: 24px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: var(--light-gray);
    /* color: var(--text-color); */
    text-decoration: none;
    margin-bottom: 10px;
}

/* Responsive Design (Footer) */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        gap: 30px;
    }
}

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

    .newsletter-form {
        margin: 0 auto;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
    }
}