/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Footer Styles */
footer {
    background-color: #0d253f;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 20px;
}

.footer-logo,
.footer-links,
.footer-contact,
.footer-newsletter {
    flex: 1 1 200px;
    margin: 10px;
}

.footer-logo p,
.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.footer-logo a {
    display: block;
    margin-bottom: 10px;
}

.footer-logo-img {
    width: 100px;
    height: auto;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 16px;
    color: #ffa500;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffa500;
}

/* Newsletter Styles */
.footer-newsletter p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 10px;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 300px;
}

.footer-newsletter input[type="email"] {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.footer-newsletter button {
    padding: 8px 15px;
    background-color: #ffa500;
    color: #0d253f;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #d48800;
}

/* Social Icons */
.footer-bottom {
    background-color: #1e3d5a;
    padding: 15px 20px;
    text-align: center;
    width: 100%;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom p {
    color: #ccc;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-newsletter {
        flex: 1 1 100%;
        margin: 15px 0;
    }

    .footer-newsletter form {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: none;
    }

    .footer-newsletter input[type="email"],
    .footer-newsletter button {
        width: 100%;
        margin: 5px 0;
    }
}
