.main-footer {
    padding: 50px 0 30px 0;
    border-top: 1px solid #e5e5e5;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    color: #212529;
}

.footer_link ul {
    list-style: none;
    padding: 0;
}

.footer_link li span {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer_link a {
    color: #4b5563;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer_link a:hover {
    color: #095763;
}

.footer_about_text {
    font-size: 0.80rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 80%;
}

.bottom-footer {
    padding: 20px 0;
}

.footer-divider {
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 20px 0;
}

.footer_subscribe .footer-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #0e1a23;
}

.footer_subscribe .footer-subtext {
    font-size: 0.95rem;
    color: #44515b;
    margin-bottom: 14px;
}

.footer-subscribe-form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 420px;
}

.footer-subscribe-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ccd7df;
    border-radius: 6px;
    outline: none;
    font-size: 0.95rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.footer-subscribe-form input:focus {
    border-color: #095763;
    box-shadow: 0 0 0 3px rgba(9, 87, 99, 0.15);
}

.footer-subscribe-form button {
    padding: 11px 18px;
    background: #095763;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.footer-subscribe-form button:hover {
    background: #0b6f7c;
    transform: translateY(-2px);
}


/* Redesigned Social Icons */
.footer_socials {
    display: flex;
    gap: 14px;
}

.footer_socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    color: #000;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer_socials a:hover {
    background: #095763;
    border-color: #095763;
    color: #fff;
    transform: translateY(-3px);
}