/* Leistungen Template Styles */

.leistungen-page-main {
    background-color: #ffffff;
}

/* Additional spacing for content area between sections */
.leistungen-page-main .page-container {
    padding: 80px 0;
}

.leistungen-page-main .page-article {
    max-width: 100%;
    margin: 0 auto;
}

.leistungen-page-main .page-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.leistungen-page-main .page-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
}

.leistungen-page-main .page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 32px;
    margin-bottom: 16px;
}

.leistungen-page-main .page-content p {
    margin-bottom: 20px;
}

.leistungen-page-main .page-content ul,
.leistungen-page-main .page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.leistungen-page-main .page-content li {
    margin-bottom: 10px;
}

/* Added CTA Section Styles from template-about.css */
/* ===================================
   CTA Section - Clean Blue Background
   =================================== */
.about-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c5282 0%, #1a3a5c 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.about-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-title-large {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-text-large {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 18px 48px;
    background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(249, 168, 37, 0.4);
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(249, 168, 37, 0.5);
}

.btn-cta-secondary {
    padding: 18px 48px;
    background: transparent;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .leistungen-page-main .page-container {
        padding: 50px 0;
    }
    
    .leistungen-page-main .page-content h2 {
        font-size: 1.75rem;
    }
    
    .leistungen-page-main .page-content h3 {
        font-size: 1.35rem;
    }

    /* Added responsive styles for CTA Section */
    .about-cta-section {
        padding: 80px 0;
    }
    
    .cta-title-large {
        font-size: 2rem;
    }
    
    .cta-text-large {
        font-size: 1.125rem;
    }
    
    .cta-button-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-title-large {
        font-size: 1.75rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 36px;
        font-size: 1rem;
    }
}
