/* Datenschutz Seite Styling */

.main-content {
    padding: 120px 0 80px 0;
    min-height: calc(100vh - 200px);
    background-color: #f8f9fa;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.content-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

/* Datenschutz Content Styling */
.content-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
}

.content-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin: 25px 0 12px 0;
    padding-left: 10px;
    border-left: 3px solid var(--accent-color);
}

.content-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 20px 0 10px 0;
    padding-left: 8px;
    border-left: 2px solid var(--accent-color);
}

.content-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
    text-align: justify;
}

.content-section strong {
    color: #333333;
    font-weight: 600;
}

.content-section br {
    line-height: 1.8;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 8px;
}

.content-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

.content-section a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 100px 0 60px 0;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .content-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .content-section h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px 0;
        padding-left: 12px;
    }
    
    .content-section h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
        padding-left: 8px;
    }
    
    .content-section h4 {
        font-size: 1rem;
        margin: 15px 0 8px 0;
        padding-left: 6px;
    }
    
    .content-section p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .content-section {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .content-section h1 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .content-section h2 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
        padding-left: 10px;
    }
    
    .content-section h3 {
        font-size: 1rem;
        margin: 15px 0 8px 0;
        padding-left: 6px;
    }
    
    .content-section h4 {
        font-size: 0.95rem;
        margin: 12px 0 6px 0;
        padding-left: 4px;
    }
    
    .content-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}
