/* Reset & General Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
}

/* Footer Container */
.footer-container {
    background-color: #0c2a40;
    color: white;
    padding: 50px 0;
}

/* Footer Wrapper */
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 8rem; /* Reduced gap to match reference design */
}

/* Footer Sections */
.footer-section {
    flex: 1;
    /* min-width: 200px; */
}


.footer-section h3 {
    font-size: 1.2rem;
}



.footer-logo {
    width: 95px;
    margin-bottom: 15px;
}

.footer-description {
    color: #b0c7d4;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
    max-width: 300px; /* Increased width for more spacious text */
}

.contact-details p {
    color: #b0c7d4;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details a {
    color: #b0c7d4;
    text-decoration: none;
    margin-bottom: 5px;
}

.contact-details a:hover {
    color: #fff;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

p, a {
    color: #b0c7d4;
    font-size: 1rem;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px; /* Increased space above social icons to match reference */
}

.social-icons a {
    color: #b0c7d4;
    font-size: 1.5rem;
}

.social-icons a:hover {
    color: white;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px; /* Increased gap before footer bottom */
    border-top: 1px solid #1a3b54;
    padding: 15px 0;
    color: #b0c7d4;
    font-size: 0.9rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    margin-top: 1rem;
}

/* Remove footer-links styling since we removed those links */
.footer-bottom span {
    display: block;
    margin: 0 auto;
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 20px; /* Reduced gap for smaller screens */
    }

    .footer-section {
        margin: 20px 0;
        text-align: left;
        min-width: auto;
    }

    .footer-logo {
        width: 80px;
    }

    .footer-description {
        max-width: 100%; /* Full width on tablets */
    }

    h3 {
        font-size: 1.5rem;
    }

    p, a {
        font-size: 0.9rem;
    }

    .social-icons {
        margin-top: 15px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .footer-wrapper {
        padding: 0 15px;
    }

    .footer-section {
        margin: 15px 0;
    }

    .footer-logo {
        width: 70px;
    }

    h3 {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .social-icons a {
        font-size: 1.2rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 10px 15px;
        margin-top: 20px;
    }
}