/* AGB 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;
}

/* AGB 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;
}

/* PDF Download Button */
.pdf-download-container {
    text-align: center;
    margin: 30px 0 40px 0;
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(43, 145, 132, 0.3);
    border: 2px solid var(--accent-color);
}

.pdf-download-btn:hover {
    background-color: #237a6f;
    border-color: #237a6f;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 145, 132, 0.4);
}

.pdf-download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(43, 145, 132, 0.3);
    color: #ffffff !important;
}

.pdf-download-btn svg {
    flex-shrink: 0;
    color: #ffffff;
    stroke: #ffffff;
}

/* 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;
    }
    
    .pdf-download-container {
        margin: 25px 0 30px 0;
    }
    
    .pdf-download-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@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;
    }
    
    .pdf-download-container {
        margin: 20px 0 25px 0;
    }
    
    .pdf-download-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .pdf-download-btn svg {
        width: 18px;
        height: 18px;
    }
}
