
/* Footer Styling */
.footer {
    background-color: #003366;
    color: #ecf0f1;
    padding: 40px 0;
    text-align: center;
    font-size: 18px;
}

/* Container inside footer */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Common styles for all footer sections */
.footer-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

/* Styling for section headings */
.footer-section h3 {
    margin-bottom: 15px;
    color: #eaeaea;
    font-size: 24px;
}

/* Styling for paragraph text */
.footer-section p {
    line-height: 1.8;
}

/* Styling for quick links section */
.quick-links ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.quick-links a {
    color: #bdc3c7;
    text-decoration: none;
}

/* Styling for social media links */
.social-links a {
    color: #ecf0f1;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
}

/* Bottom border styling for the footer */
.footer-bottom {
    display:flex;
    justify-content: center;
    gap:50px;
    border-top: 1px solid #34495e;
    margin-top: 30px;
    padding-top: 15px;
    /* font-size: 16px; */
}