body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.footer {
    background-color: #254336;
    color: #ecf0f1;
    padding: 50px 0;
    text-align: left;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.footer .section {
    flex: 1;
    min-width: 250px;
    margin: 15px;
}

.footer .section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #f39c12;
}

.footer .section p, .footer .section a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 5px 0;
    display: block;
}

.footer .section a:hover {
    color: #ecf0f1;
}

.footer .social-icons {
    display: flex;
    justify-content: flex-start;
    padding-top: 10px;
}

.footer .social-icons a {
    margin: 0 10px;
    color: #bdc3c7;
    font-size: 24px;
    text-decoration: none;
}

.footer .social-icons a:hover {
    color: #ecf0f1;
}

.footer .newsletter input[type="email"] {
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 3px;
    margin-right: 5px;
    outline: none;
    display: none;
}

.footer .newsletter button {
    padding: 10px 20px;
    border: none;
    background-color: #f39c12;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    display: none;
}

.footer .newsletter button:hover {
    background-color: #e67e22;
}

.footer .bottom-bar {
    background-color: #34495e;
    padding: 20px 0;
    text-align: center;
    color: #bdc3c7;
    margin-top: 20px;
}

.footer .social-icons i {
    font-size: 24px;
    transition: color 0.3s;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer .section {
        min-width: 100%;
        margin: 15px 0;
        text-align: center;
    }

    .footer .newsletter input[type="email"] {
        width: 80%;
        margin-bottom: 10px;
        display: none;
    }

    .footer .newsletter button {
        width: 80%;
        display: none;
    }

    .footer .social-icons {
        justify-content: center;
    }

    .bottom-bar{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .footer .section h3 {
        font-size: 18px;
    }

    .footer .section p, .footer .section a {
        font-size: 14px;
    }

    .footer .social-icons a {
        font-size: 20px;
    }

    .footer .newsletter input[type="email"] {
        width: 100%;
    }

    .footer .newsletter button {
        width: 100%;
    }
}
