body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f8f8;
}

.footer-container {
    background: linear-gradient(135deg, #f9fafc, #eef3fb);
    /* soft light gradient */
    color: #333;
    padding: 60px 40px;
    border-top: 5px solid #e4353a;
    /* red top border */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e4353a;
    /* red headings */
    border-left: 4px solid #0e2b6c;
    /* blue accent */
    padding-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    line-height: 1.7;
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e4353a;
    padding-left: 8px;
}

.status-badge {
    background: #e4353a;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    margin-left: 8px;
    font-weight: bold;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.6;
    }
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.contact-info i {
    margin-right: 10px;
    font-size: 16px;
    color: #0e2b6c;
    width: 25px;
    text-align: center;
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-info a:hover {
    color: #e4353a;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e2b6c;
    font-size: 16px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e4353a;
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #555;
}

.footer-bottom a {
    color: #0e2b6c;
    font-weight: bold;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #e4353a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px;
    }
}