.footer {
    font-family: 'Afacad', sans-serif;
    background-color: #ffffff;
    color: #053763;
    padding-top: 30px;
    padding-bottom: 15px;
    position: relative;
    border-top: 1px solid #05376342;
}
.footer-overlay {
    padding: 0px;
}
.footer-bottom {
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2px;
    margin-bottom: 35px;
}
.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: #053763;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 6px;
}
.footer-section ul li a {
    color: #053763e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.footer-section ul li a:hover {
    font-weight: 700;
    color: #053763e0;
    transform: translateX(4px);
}
.footer-section ul li a::before {
    content: "➤";
    font-size: 8px;
    color: #053763;
} 
.logo {
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-left: -2px;
    margin-bottom: 3px;
    gap: 8px;
}
.logo img {
    height: 70px;
    width: auto;
}
.footer-section p {
    margin: 0px;
    font-size: 16px;
    color: #053763e0;
    font-weight: 400;
    line-height: 1.4;
}
.newsletter-form {
    display: flex;
}
.footer-section input[type="email"] {
    width: 100%;
    height: auto;
    padding: 12px;
    font-size: 14px;
    border: none;
    margin-right: 8px;
    border-radius: 100px;
    color: #222;
    background: #e8ebea;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.footer-section input[type="email"]:focus {
    outline: none;
    background: #e8ebea;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}
.subscribe-btn {
    width: 55%;
    height: 40px;
    border: none;
    border-radius: 100px;
    background-position: left center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.55);
    background: #053763e0;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.subscribe-btn:hover {
    background-position: right center;
    transform: translateY(-4px);
    text-decoration: none;
}
.privacy-policy {
    text-align: center;
    color: #053763e0;
    font-weight: 500;
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid #05376342;
}
.privacy-policy a {
    color: #053763e0;
    font-weight: bold;
    text-decoration: none;
}
.privacy-policy a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer {
        padding-top: 30px;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 0px;
    }
    .privacy-policy {
        padding: 10px 5px;
        margin-top: 1.2rem;
    }
    .footer-section input,
    .subscribe-btn {
        width: 100%;
    }
    .logo {
        justify-content: center;
    }
  }
  