/* Footer Specific Styles */
.footer {
    background: linear-gradient(45deg, #0d0d0d, #1a1a1a);
    color: white;
    padding: 20px 0;
    font-family: 'Roboto', sans-serif;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #00f0ff;
    bottom: 0;
    left: 0;
}

.footer-link {
    color: #00f0ff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #00c8cc;
}

.footer-link::before {
    content: '🔗 ';
}

.footer .list-unstyled {
    padding-left: 0;
}

.footer .list-unstyled li {
    margin-bottom: 10px;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .row {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .col-md-4 {
    flex: 1 1 30%;
    max-width: 30%;
}

.footer .text-center {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer .col-md-4 {
        flex: 1 1 45%;
        max-width: 45%;
        margin-bottom: 20px;
    }

    .footer .text-center {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .footer .col-md-4 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
