footer {
        background: linear-gradient(to right, #0a2e5a, #0053a0);
        color: white;
        padding: 60px 0 20px;
        /* margin-top: 50px; */
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }
    .footer-column h3 {
        color: #e0e0e0;
        font-size: 1.4rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }
    .footer-column h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #ee3824;
    }
    .footer-column p { color: #e0e0e0; margin-bottom: 20px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a {
        color: #e0e0e0;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .footer-links a:hover { color: #fff; transform: translateX(5px); }
    .contact-info { list-style: none; }
    .contact-info li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        color: #e0e0e0;
    }
    .contact-info i { color: #ee3824; font-size: 1.1rem; margin-top: 3px; }
    .social-icons { display: flex; gap: 15px; margin-top: 20px; }
    .social-icons a {
        display: flex; align-items: center; justify-content: center;
        width: 40px; height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: white;
        transition: all 0.3s ease;
    }
    .social-icons a:hover { background: #ee3824; transform: translateY(-5px); }
    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .footer-bottom p { color: #e0e0e0; font-size: 0.9rem; }
    .payment-methods {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    .payment-methods i { font-size: 1.8rem; color: #e0e0e0; }
    @media (max-width: 768px) {
        .footer-content { grid-template-columns: 1fr; gap: 30px; }
        .social-icons { justify-content: center; }
    }