/* footer.css */

footer {
    width: 100vw;
    max-width: 100%;
    margin-top: 5rem; /* Abstand von 5rem zum Content */
    padding: 2rem 0;
    background-color: #f5f5f5;
    border-top: 3px solid #0099ff;
    color: #333;
    text-align: center;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; 
    gap: 2rem;
    padding: 0 1rem;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    color: #0099ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #0099ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #40fe2a;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Eine Spalte auf Mobilgeräten */
    }
}