.footer {
    /*background-color: #1a2247;*/
    background-color: var(--var-blue-color);
    color: #ffffff;
    padding: 50px 20px;
}
.footer h3 {
    margin-bottom: 10px;
}
.footer-container {
    max-width: 1240px;
    margin: 0 auto;
}
.footer-container h3 {
    margin-bottom: 15px;
    font-size: 25px !important;
    font-weight: bold !important;
}

.footer-subscribe {
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    margin-bottom: 90px;
    padding-bottom: 40px;
    padding-top: 40px;
    border-bottom: 1px solid white;
}
.subscribe-left {
    flex: 0 0 50%;
    min-width: 50%;
}
.subscribe-right {
    flex: 0 0 50%;
    min-width: 50%;
}

.footer-subscribe h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-subscribe p {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-subscribe form {
    display: flex;
    justify-content: center;
}

.footer-subscribe input[type="email"] {
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 300px;
    max-width: 100%;
}

.footer-subscribe button {
    padding: 15px 20px;
    border: none;
    background-color: var(--var-blue-secondary);
    font-weight: bold;
    color: var(--var-blue-inside-seconday);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-content {
    gap: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-about,
.footer-links,
.footer-explore,
.footer-contact {
    margin-bottom: 30px;
    min-width: 200px;
}

.footer-about {
    max-width: 300px;
}

.footer-logo img {
    max-width: 350px;
    height: auto;
    margin-bottom: 15px;
}
.footer-social {
    margin-top: 10px;
}
.footer-social a {
    margin-right: 10px;
}
.footer-social i {
    font-size: 22px;
    color: white;
}

.footer-links ul,
.footer-explore ul {
    list-style-type: none;
    padding: 0;
}

.footer-links li,
.footer-explore li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-explore a,
.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    margin: 0 auto;
    max-width: 1240px;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid white;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px !important;
    }

    .footer-subscribe form {
        flex-direction: column;
    }

    .footer-subscribe input[type="email"],
    .footer-subscribe button {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    .subscribe-left, .subscribe-right {
        flex: 0 0 100%;
        min-width: 100%;
    }
}