/* Allgemeine Styles für rechtliche Seiten */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f5f7fb;
    color: #495057;
}

.legal-container {
    padding: 30px 20px;
    min-height: calc(100vh - 200px);
}

.legal-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.legal-header {
    background-color: #206bc4;
    color: white;
    padding: 20px 25px;
}

.legal-header h1 {
    margin: 0;
    font-size: 1.8rem;
}

.legal-content {
    padding: 25px;
}

.legal-content h2 {
    color: #206bc4;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
}

/* Cookie-Spezifische Styles */
.cookie-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.cookie-header {
    background-color: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.cookie-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.cookie-body {
    padding: 20px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #206bc4;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Footer Styles */
.main-footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
}

.footer-links a:hover {
    color: #206bc4;
    text-decoration: underline;
}

.office-image-container {
    position: relative;
    margin-top: 15px;
}

.office-image {
    width: 100%;
    border-radius: 5px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 15px;
}