body {
    margin: 0;
    padding: 0;
}

/* Footer Styles */
.footer {
    background-color: #000747;
    color: #fff;
    padding: 50px 0 0 0;
    font-size: 14px;
    max-width: 100vw;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    margin-bottom: 20px;
}

.footer-section h3, .footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-section p {
    margin: 5px 0;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.footer-socials a {
    margin-right: 10px;
    display: inline-block;
}

.footer > .contact-info {
    width: max-content;
}

.footer-socials img {
    width: 30px;
    height: 30px;
}

.quick-links {
    text-align: center;
}

/* Quick Links List */
.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

/* Newsletter Form */
.newsletter form {
    display: flex;
    flex-direction: column;
}

.newsletter input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.newsletter button {
    background-color: #55d0e0;
    color: rgb(0, 0, 0);
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #55d0e0;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #000000;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    max-width: 100vw;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        width: 100%;
        margin-bottom: 30px;
    }

    .quick-links {
        text-align: left;
    }

}