.site-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    padding: 50px 0;
    position: relative;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.site-footer h5 {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4ecdc4;
}

.site-footer p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.site-footer p:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0;
        text-align: center;
    }

    .site-footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .site-footer .col-md-6:first-child {
        margin-bottom: 30px;
    }
} 