/* Footer Cards Container */
.footer-cards {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 0px;
    background: #111;
    z-index: 2;
    padding-bottom: 200px;
    flex-wrap: wrap; /* Added for better mobile responsiveness */
    margin-bottom: -60px;
    width: calc(100% + 80px); /* 100% width plus double the padding */
    margin-left: -40px; /* Negative margin to offset the body's padding */
    margin-right: -40px; /* Negative margin to offset the body's padding */
}

/* Individual Footer Card */
.footer-card {
    background: #111;
    border-radius: 24px;
    padding: 30px;
    width: 300px;
    text-align: left;
    border: 1px solid #222;
    transition: transform 0.2s ease;
}

/* Footer Card Link Styles */
.footer-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Footer Card Image */
.footer-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Footer Card Title */
.footer-card h2 {
    color: white;
    font-size: 24px;
    margin: 20px 0;
}

/* Footer Card Description */
.footer-card p {
    color: #999;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Footer Card Hover Effect */
.footer-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-cards {
        gap: 20px;
        padding: 40px 15px;
    }
    
    .footer-card {
        width: 100%;
        max-width: 300px;
    }
}
