/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0066cc;
}

.nav-link.phone {
    background: #0066cc;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-link.phone:hover {
    background: #0052a3;
    color: white;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #6c757d;
}

.breadcrumb-list a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Table of Contents */
.toc {
    background: #f8f9fa;
    padding: 60px 0;
}

.toc-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #0066cc;
}

.toc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.toc-number {
    background: #0066cc;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Main container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Category sections */
.category-section {
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.category-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    max-width: 100%;
}

.category-header.reverse {
    grid-template-columns: 1fr 1fr;
}

.category-header.reverse .category-content {
    order: 2;
}

.category-header.reverse .category-image {
    order: 1;
}

.category-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.category-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #0066cc;
    margin-bottom: 20px;
}

.category-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.cta-button:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* Category Details */
.category-details {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.detail-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 10px;
}

.detail-card ul {
    list-style: none;
}

.detail-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.detail-card li:last-child {
    border-bottom: none;
}

.detail-card li strong {
    color: #0066cc;
}

.detail-card li:has(✓) {
    color: #28a745;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-button.primary {
    background: white;
    color: #ff6600;
}

.cta-button.primary:hover {
    background: #f8f9fa;
    color: #e55a00;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #ff6600;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px;
    }
    
    .nav {
        gap: 8px !important;
        flex-wrap: nowrap !important;
        justify-content: flex-end !important;
        flex-direction: row !important;
    }
    
    .nav-link {
        font-size: 12px !important;
        padding: 6px 8px !important;
        white-space: nowrap !important;
    }
    
    .nav-link.phone {
        font-size: 11px !important;
        padding: 5px 8px !important;
        border-radius: 15px !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .toc-title {
        font-size: 2rem; /* Reduziert von 2.5rem um 20% */
    }
    
    .category-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .category-header.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .category-header.reverse .category-content {
        order: 2;
    }

    .category-header.reverse .category-image {
        order: 1;
    }
    
    .category-title {
        font-size: 1.76rem; /* Reduziert von 2.2rem um 20% */
    }
    
    .category-details {
        padding: 30px 20px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .detail-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .detail-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .detail-card li {
        padding: 10px 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .cta-title {
        font-size: 1.76rem; /* Reduziert von 2.2rem um 20% */
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Spezifische H2-Anpassungen für mobile Geräte */
    h2 {
        font-size: 1.6rem; /* 20% kleiner als Standard 2rem */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .toc {
        padding: 40px 0;
    }
    
    .toc-title {
        font-size: 1.6rem; /* Reduziert von 2rem um 20% */
    }
    
    .main {
        padding: 60px 0;
    }
    
    .category-section {
        margin-bottom: 80px;
    }
    
    .category-title {
        font-size: 1.44rem; /* Reduziert von 1.8rem um 20% */
    }
    
    .category-details {
        padding: 20px 15px;
    }
    
    .detail-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .detail-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .detail-card li {
        padding: 8px 0;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.44rem; /* Reduziert von 1.8rem um 20% */
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Spezifische H2-Anpassungen für sehr kleine mobile Geräte */
    h2 {
        font-size: 1.28rem; /* 20% kleiner als Standard 1.6rem */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.toc-item:focus,
.cta-button:focus,
.nav-link:focus {
    outline: 3px solid #0066cc;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .breadcrumb,
    .toc,
    .cta-section,
    .footer {
        display: none;
    }
    
    .main {
        padding: 0;
    }
    
    .category-section {
        page-break-inside: avoid;
        margin-bottom: 40px;
    }
}



/* Musterservice Page Styles */
.step-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    margin: 20px 0;
}

.step-list li {
    margin: 15px 0;
    padding-left: 10px;
}

.step-list strong {
    color: #007bff;
}

.sample-button-demo {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.button-example {
    margin: 20px 0;
}

.action--link.link--samples {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.action--link.link--samples:hover {
    background: #0056b3;
}

.folienmuster-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #28a745;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.folienmuster-button:hover {
    background: #218838;
    border-color: #218838;
}

.sample-process {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.sample-process h4 {
    color: #495057;
    margin-bottom: 20px;
    font-size: 16px;
}

.sample-form-preview {
    background: #1e5a96;
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.form-header {
    background: #1e5a96;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.form-header .tab {
    background: #ff8c00;
    color: white;
    padding: 8px 16px;
    border-radius: 4px 4px 0 0;
    font-weight: 500;
    font-size: 14px;
}

.form-content {
    padding: 20px;
    color: white;
}

.form-content p {
    margin-bottom: 20px;
    font-size: 14px;
}

.field-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: white;
}

.field-group input {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    color: #495057;
}

.address-row {
    display: flex;
    gap: 10px;
}

.address-row input {
    flex: 1;
}

.send-button {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: not-allowed;
    margin-top: 15px;
}

.icon--docs::before {
    content: "📄";
    margin-right: 5px;
}

.button-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 15px;
    font-style: italic;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 8px 0;
    color: #28a745;
    font-weight: 500;
}

.product-list {
    list-style: none;
    padding: 0;
}

.product-list li {
    padding: 6px 0;
    color: #495057;
}

.info-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.info-card h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 18px;
}

.cta-section-small {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 40px 0;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.cta-section-small .cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section-small .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}


/* ===== MILCHGLASFOLIE TEMPLATE STYLES ===== */

/* Body Background for Milchglas Template */
body.milchglas-template {
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* Main Container */
.milchglas-main-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #005b9e;
    border-radius: 8px;
}

/* Intro Box */
.milchglas-intro-box {
    background-color: #e8e8e8;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff7f00;
}

.milchglas-intro-title {
    margin-top: 0;
    color: #005b9e;
}

/* Checkmark Lists */
.milchglas-checkmark-list {
    list-style-type: none;
    padding-left: 0;
}

.milchglas-checkmark-item {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    color: #333;
}

/* Hero Section */
.milchglas-hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
    align-items: center;
}

.milchglas-hero-text {
    flex: 1;
    min-width: 250px;
}

.milchglas-hero-paragraph {
    margin-bottom: 1em;
    color: #ffffff;
}

.milchglas-hero-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.milchglas-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* CTA Box */
.milchglas-cta-box {
    background-color: #e8e8e8;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff7f00;
}

.milchglas-cta-title {
    margin-top: 0;
    color: #005b9e;
}

.milchglas-cta-text {
    margin-bottom: 1em;
    color: #333;
}

.milchglas-cta-button {
    display: inline-block;
    background-color: #ff7f00;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.milchglas-cta-button:hover {
    background-color: #e66a00;
}

/* Info Section */
.milchglas-info-section {
    background-color: #e6f3ff;
    border-radius: 6px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #005b9e;
}

.milchglas-section-heading {
    font-size: 1.8em;
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 15px;
}

.milchglas-info-text {
    margin-bottom: 1em;
    color: #333;
}

/* Comparison Cards */
.milchglas-comparison-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.milchglas-card-adhesive {
    flex: 1;
    min-width: 250px;
    background-color: #e6f3ff;
    border: 2px solid #005b9e;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,91,158,0.1);
}

.milchglas-card-static {
    flex: 1;
    min-width: 250px;
    background-color: #fff2e8;
    border: 2px solid #ff7f00;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(255,127,0,0.1);
}

.milchglas-card-title-blue {
    color: #005b9e;
    margin: 0 0 15px 0;
    font-size: 18px;
    text-align: center;
    border-bottom: 2px solid #005b9e;
    padding-bottom: 8px;
}

.milchglas-card-title-orange {
    color: #ff7f00;
    margin: 0 0 15px 0;
    font-size: 18px;
    text-align: center;
    border-bottom: 2px solid #ff7f00;
    padding-bottom: 8px;
}

.milchglas-card-detail-white {
    margin-bottom: 12px;
    padding: 8px;
    background-color: #ffffff;
    border-radius: 4px;
}

.milchglas-card-detail-gray {
    margin-bottom: 12px;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.milchglas-detail-label-blue {
    color: #005b9e;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.milchglas-detail-label-orange {
    color: #ff7f00;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.milchglas-detail-text {
    color: #333;
    font-size: 13px;
    line-height: 1.4;
}

/* Subsection Title */
.milchglas-subsection-title {
    color: #005b9e;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Application Grid */
.milchglas-application-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.milchglas-application-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.milchglas-application-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

.milchglas-application-title {
    color: #005b9e;
    margin: 10px 0 5px 0;
}

.milchglas-application-text {
    color: #333;
    font-size: 14px;
    margin: 0;
}

/* Main Headings */
.milchglas-main-heading {
    font-size: 1.8em;
    border-left: 5px solid #ff7f00;
    padding-left: 15px;
    color: #ffffff;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.milchglas-main-text {
    margin-bottom: 1em;
    color: #ffffff;
}

/* Tools Section */
.milchglas-tools-section {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #005b9e;
}

.milchglas-tools-title {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 15px;
}

.milchglas-tools-list {
    list-style-type: none;
    padding-left: 0;
}

.milchglas-tools-item {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    color: #333;
}

.milchglas-tools-item:last-child {
    margin-bottom: 0;
}

/* Step Containers */
.milchglas-step-container {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-left: 5px solid #005b9e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.milchglas-step-title {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 10px;
}

.milchglas-step-text {
    margin-bottom: 10px;
    color: #333;
}

/* Step Tips */
.milchglas-step-tip-blue {
    background-color: #e6f3ff;
    border-radius: 4px;
    padding: 10px;
    border-left: 3px solid #005b9e;
}

.milchglas-step-tip-orange {
    background-color: #fff2e8;
    border-radius: 4px;
    padding: 10px;
    border-left: 3px solid #ff7f00;
}

.milchglas-tip-label {
    color: #005b9e;
}

.milchglas-tip-label-orange {
    color: #ff7f00;
}

.milchglas-tip-text {
    color: #005b9e;
}

.milchglas-tip-text-blue {
    color: #005b9e;
}

/* Responsive Design for Milchglas Template */
@media (max-width: 768px) {
    .milchglas-main-container {
        padding: 10px;
    }
    
    .milchglas-hero-section {
        flex-direction: column;
    }
    
    .milchglas-hero-text,
    .milchglas-hero-image {
        min-width: 100%;
    }
    
    .milchglas-comparison-cards {
        flex-direction: column;
    }
    
    .milchglas-card-adhesive,
    .milchglas-card-static {
        min-width: 100%;
    }
    
    .milchglas-application-grid {
        flex-direction: column;
    }
    
    .milchglas-application-card {
        min-width: 100%;
    }
    
    .milchglas-main-heading {
        font-size: 1.5em;
    }
    
    .milchglas-section-heading {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .milchglas-intro-box,
    .milchglas-cta-box,
    .milchglas-info-section,
    .milchglas-tools-section {
        padding: 10px;
    }
    
    .milchglas-main-heading {
        font-size: 1.3em;
        padding-left: 10px;
    }
    
    .milchglas-section-heading {
        font-size: 1.3em;
    }
    
    .milchglas-cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}



/* ===== SICHTSCHUTZFOLIEN TEMPLATE STYLES ===== */

/* Body Background for Sichtschutz Template */
body.sichtschutz-template {
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* Main Container */
.sichtschutz-main-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 0;
}

/* Intro Box */
.sichtschutz-intro-box {
    background-color: #e8e8e8;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff7f00;
}

.sichtschutz-intro-title {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.sichtschutz-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sichtschutz-checklist-item {
    color: #333;
    margin-bottom: 8px;
    padding-left: 0;
    font-size: 0.95em;
}

/* Hero Section */
.sichtschutz-hero-section {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: flex-start;
}

.sichtschutz-hero-text {
    flex: 1;
    min-width: 50%;
}

.sichtschutz-hero-image {
    flex: 1;
    min-width: 50%;
}

.sichtschutz-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Main Headings */
.sichtschutz-main-heading {
    color: #005b9e;
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.sichtschutz-section-heading {
    color: #005b9e;
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.sichtschutz-subsection-title {
    color: #ff7f00;
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Legacy heading styles for compatibility */
.sichtschutz-heading {
    color: #005b9e;
    font-size: 1.8em;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 600;
}

.sichtschutz-subheading {
    color: #ff7f00;
    font-size: 1.3em;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    font-weight: 600;
}

/* Text */
.sichtschutz-main-text {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.sichtschutz-section-text {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sichtschutz-paragraph {
    color: #333;
    margin-bottom: 1em;
    line-height: 1.6;
}

/* CTA Box */
.sichtschutz-cta-box {
    background-color: #e6f3ff;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    border-left: 5px solid #005b9e;
}

.sichtschutz-cta-title {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: bold;
}

.sichtschutz-cta-text {
    color: #333;
    margin-bottom: 15px;
}

.sichtschutz-cta-button {
    background-color: #005b9e;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.sichtschutz-cta-button:hover {
    background-color: #004080;
    color: white;
}

/* Comparison Cards */
.sichtschutz-comparison-cards {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.sichtschutz-card-blue,
.sichtschutz-card-orange {
    flex: 1;
    min-width: 280px;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sichtschutz-card-blue {
    background-color: #e6f3ff;
    border-left: 5px solid #005b9e;
}

.sichtschutz-card-orange {
    background-color: #fff2e8;
    border-left: 5px solid #ff7f00;
}

.sichtschutz-card-title-blue {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: bold;
}

.sichtschutz-card-title-orange {
    color: #ff7f00;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: bold;
}

.sichtschutz-card-detail-white {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.sichtschutz-detail-label-blue {
    color: #005b9e;
    font-weight: bold;
}

.sichtschutz-detail-label-orange {
    color: #ff7f00;
    font-weight: bold;
}

.sichtschutz-detail-text {
    color: #333;
}

.sichtschutz-card-button-blue {
    background-color: #005b9e;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.sichtschutz-card-button-blue:hover {
    background-color: #004080;
    color: white;
}

.sichtschutz-card-button-orange {
    background-color: #ff7f00;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.sichtschutz-card-button-orange:hover {
    background-color: #e66a00;
    color: white;
}

/* Application Grid */
.sichtschutz-application-grid {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.sichtschutz-application-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sichtschutz-application-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.sichtschutz-application-title {
    color: #005b9e;
    margin-bottom: 8px;
    font-size: 1.1em;
    font-weight: bold;
}

.sichtschutz-application-text {
    color: #333;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Tools Section */
.sichtschutz-tools-section {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #ff7f00;
}

.sichtschutz-tools-title {
    color: #ff7f00;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: bold;
}

.sichtschutz-tools-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sichtschutz-tools-item {
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95em;
    line-height: 1.5;
}

.sichtschutz-tools-item:last-child {
    margin-bottom: 0;
}

/* Step Containers */
.sichtschutz-step-container {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-left: 5px solid #005b9e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sichtschutz-step-title {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 10px;
}

.sichtschutz-step-text {
    margin-bottom: 10px;
    color: #333;
}

/* Step Tips */
.sichtschutz-step-tip-blue {
    background-color: #e6f3ff;
    border-radius: 4px;
    padding: 10px;
    border-left: 3px solid #005b9e;
}

.sichtschutz-step-tip-orange {
    background-color: #fff2e8;
    border-radius: 4px;
    padding: 10px;
    border-left: 3px solid #ff7f00;
}

.sichtschutz-tip-label {
    color: #005b9e;
}

.sichtschutz-tip-label-orange {
    color: #ff7f00;
}

.sichtschutz-tip-text {
    color: #005b9e;
}

.sichtschutz-tip-text-blue {
    color: #005b9e;
}

/* Info Section */
.sichtschutz-info-section {
    margin: 30px 0;
}

/* FAQ */
.sichtschutz-faq-container {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #005b9e;
}

.sichtschutz-faq-question {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: bold;
}

.sichtschutz-faq-answer {
    color: #333;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Final CTA */
.sichtschutz-final-cta {
    background-color: #fff2e8;
    border-radius: 6px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border-left: 5px solid #ff7f00;
}

/* Images */
.sichtschutz-image-container {
    text-align: center;
    margin: 30px 0;
}

/* Lists */
.sichtschutz-ordered-list {
    padding-left: 20px;
    margin-top: 10px;
}

.sichtschutz-ordered-item {
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Responsive Design for Sichtschutz Template */
@media (max-width: 768px) {
    .sichtschutz-main-container {
        padding: 15px;
    }
    
    .sichtschutz-heading {
        font-size: 1.5em;
    }
    
    .sichtschutz-subheading {
        font-size: 1.2em;
    }
    
    .sichtschutz-image {
        max-width: 100%;
    }
    
    .sichtschutz-image-container {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .sichtschutz-main-container {
        padding: 10px;
    }
    
    .sichtschutz-heading {
        font-size: 1.3em;
    }
    
    .sichtschutz-subheading {
        font-size: 1.1em;
    }
    
    .sichtschutz-paragraph {
        font-size: 0.95em;
    }
    
    .sichtschutz-image-container {
        margin: 15px 0;
    }
}


/* ===== RATGEBER ARTIKEL STYLES ===== */

/* Ratgeber Artikel Styles */
.ratgeber-articles {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #e74c3c;
}

.article-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.article-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* CTA Section Styles */
.cta-section {
    padding: 60px 0;
    background-color: #2c3e50;
    text-align: center;
}

.cta-section .category-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section .category-subtitle {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-section .category-description {
    font-size: 1.1rem;
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-section .cta-button:hover {
    background: #1e40af;
}

/* Responsive Design für Ratgeber Artikel */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 1.25rem;
    }
    
    .article-title {
        font-size: 1.2rem;
    }
}


/* ===== ERWEITERTE MOBILE OPTIMIERUNG ===== */

/* Verbesserte Responsive Design Regeln */
@media (max-width: 768px) {
    /* Container Optimierungen */
    .container {
        padding: 0 15px;
    }
    
    /* Sichtschutz Template Mobile */
    .sichtschutz-main-container {
        padding: 15px;
        margin: 10px;
        border-radius: 8px;
    }
    
    /* Header Mobile Optimierung */
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    .logo img {
        max-width: 250px;
        height: auto;
    }
    
    .nav {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .nav-link.phone {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb {
        padding: 8px 0;
        font-size: 14px;
    }
    
    /* Sichtschutz Überschriften Mobile */
    .sichtschutz-heading {
        font-size: 1.4em;
        margin-top: 1.2em;
        margin-bottom: 0.6em;
        line-height: 1.3;
    }
    
    .sichtschutz-subheading {
        font-size: 1.1em;
        margin-top: 1em;
        margin-bottom: 0.5em;
        line-height: 1.3;
    }
    
    /* Sichtschutz Absätze Mobile */
    .sichtschutz-paragraph {
        font-size: 0.95em;
        line-height: 1.5;
        margin-bottom: 1em;
    }
    
    /* Sichtschutz Bilder Mobile */
    .sichtschutz-image-container {
        margin: 20px 0;
    }
    
    .sichtschutz-image {
        max-width: 100%;
        border-radius: 4px;
    }
    
    /* Sichtschutz Listen Mobile */
    .sichtschutz-checklist {
        padding-left: 15px;
        margin-top: 8px;
    }
    
    .sichtschutz-checklist-item {
        font-size: 0.9em;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .sichtschutz-ordered-list {
        padding-left: 15px;
        margin-top: 8px;
    }
    
    .sichtschutz-ordered-item {
        font-size: 0.9em;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    /* Ratgeber Artikel Mobile */
    .ratgeber-articles {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .article-card {
        border-radius: 8px;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .article-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .article-category {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section .category-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .cta-section .category-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .cta-section .category-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .cta-section .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}

/* Sehr kleine Mobile Geräte */
@media (max-width: 480px) {
    /* Container für sehr kleine Bildschirme */
    .container {
        padding: 0 10px;
    }
    
    .sichtschutz-main-container {
        padding: 10px;
        margin: 5px;
    }
    
    /* Header für sehr kleine Bildschirme */
    .header-content {
        padding: 8px 0;
    }
    
    .logo img {
        max-width: 150px;
    }
    
    .nav {
        gap: 5px;
    }
    
    .nav-link {
        font-size: 10px;
        padding: 4px 6px;
    }
    
    .nav-link.phone {
        font-size: 9px !important;
        padding: 4px 6px !important;
        border-radius: 12px;
    }
    
    /* Überschriften für sehr kleine Bildschirme */
    .sichtschutz-heading {
        font-size: 1.2em;
        margin-top: 1em;
        margin-bottom: 0.5em;
    }
    
    .sichtschutz-subheading {
        font-size: 1em;
        margin-top: 0.8em;
        margin-bottom: 0.4em;
    }
    
    /* Text für sehr kleine Bildschirme */
    .sichtschutz-paragraph {
        font-size: 0.9em;
        line-height: 1.4;
    }
    
    .sichtschutz-checklist-item,
    .sichtschutz-ordered-item {
        font-size: 0.85em;
        line-height: 1.3;
    }
    
    /* Bilder für sehr kleine Bildschirme */
    .sichtschutz-image-container {
        margin: 15px 0;
    }
    
    /* Ratgeber für sehr kleine Bildschirme */
    .section-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .section-description {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .articles-grid {
        padding: 0 5px;
        gap: 1rem;
    }
    
    .article-content {
        padding: 0.8rem;
    }
    
    .article-title {
        font-size: 1rem;
    }
    
    .article-description {
        font-size: 0.85rem;
    }
    
    /* CTA für sehr kleine Bildschirme */
    .cta-section .category-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .cta-section .category-subtitle {
        font-size: 1rem;
    }
    
    .cta-section .category-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .cta-section .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Footer für sehr kleine Bildschirme */
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }
}

/* Touch-optimierte Elemente */
@media (hover: none) and (pointer: coarse) {
    /* Touch-freundliche Buttons */
    .nav-link,
    .cta-button,
    .article-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Größere Touch-Targets */
    .article-card {
        margin-bottom: 10px;
    }
    
    /* Entferne Hover-Effekte auf Touch-Geräten */
    .article-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .article-card:hover .article-image img {
        transform: none;
    }
}

/* Landscape Orientation für Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .sichtschutz-main-container {
        padding: 10px 20px;
    }
    
    .sichtschutz-heading {
        font-size: 1.3em;
    }
    
    .sichtschutz-subheading {
        font-size: 1.05em;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}



/* ===== UNIVERSELLE RATGEBER TEMPLATE STYLES ===== */

/* Body Background for Ratgeber Templates */
body.ratgeber-template {
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* Main Container */
.ratgeber-main-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 0;
}

/* Intro Box */
.ratgeber-intro-box {
    background-color: #e8e8e8;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff7f00;
}

.ratgeber-intro-title {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.ratgeber-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ratgeber-checklist-item {
    color: #333;
    margin-bottom: 8px;
    padding-left: 0;
    font-size: 0.95em;
}

/* Hero Section */
.ratgeber-hero-section {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: flex-start;
}

.ratgeber-hero-text {
    flex: 1;
    min-width: 50%;
}

.ratgeber-hero-image {
    flex: 1;
    min-width: 50%;
}

.ratgeber-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Main Headings */
.ratgeber-main-heading {
    color: #005b9e;
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.ratgeber-section-heading {
    color: #005b9e;
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.ratgeber-subsection-title {
    color: #ff7f00;
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Text */
.ratgeber-main-text {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.ratgeber-section-text {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ratgeber-paragraph {
    color: #333;
    margin-bottom: 1em;
    line-height: 1.6;
}

/* CTA Box */
.ratgeber-cta-box {
    background-color: #e6f3ff;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    border-left: 5px solid #005b9e;
}

.ratgeber-cta-title {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: bold;
}

.ratgeber-cta-text {
    color: #333;
    margin-bottom: 15px;
}

.ratgeber-cta-button {
    background-color: #005b9e;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.ratgeber-cta-button:hover {
    background-color: #004080;
    color: white;
}

/* Comparison Cards */
.ratgeber-comparison-cards {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.ratgeber-card-blue,
.ratgeber-card-orange {
    flex: 1;
    min-width: 280px;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ratgeber-card-blue {
    background-color: #e6f3ff;
    border-left: 5px solid #005b9e;
}

.ratgeber-card-orange {
    background-color: #fff2e8;
    border-left: 5px solid #ff7f00;
}

.ratgeber-card-title-blue {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: bold;
}

.ratgeber-card-title-orange {
    color: #ff7f00;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: bold;
}

.ratgeber-card-detail-white {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.ratgeber-detail-label-blue {
    color: #005b9e;
    font-weight: bold;
}

.ratgeber-detail-label-orange {
    color: #ff7f00;
    font-weight: bold;
}

.ratgeber-detail-text {
    color: #333;
}

.ratgeber-card-button-blue {
    background-color: #005b9e;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.ratgeber-card-button-blue:hover {
    background-color: #004080;
    color: white;
}

.ratgeber-card-button-orange {
    background-color: #ff7f00;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.ratgeber-card-button-orange:hover {
    background-color: #e66a00;
    color: white;
}

/* Application Grid */
.ratgeber-application-grid {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.ratgeber-application-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ratgeber-application-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.ratgeber-application-title {
    color: #005b9e;
    margin-bottom: 8px;
    font-size: 1.1em;
    font-weight: bold;
}

.ratgeber-application-text {
    color: #333;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Tools Section */
.ratgeber-tools-section {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #ff7f00;
}

.ratgeber-tools-title {
    color: #ff7f00;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: bold;
}

.ratgeber-tools-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ratgeber-tools-item {
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95em;
    line-height: 1.5;
}

.ratgeber-tools-item:last-child {
    margin-bottom: 0;
}

/* Step Containers */
.ratgeber-step-container {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-left: 5px solid #005b9e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ratgeber-step-title {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 10px;
}

.ratgeber-step-text {
    margin-bottom: 10px;
    color: #333;
}

/* Step Tips */
.ratgeber-step-tip-blue {
    background-color: #e6f3ff;
    border-radius: 4px;
    padding: 10px;
    border-left: 3px solid #005b9e;
}

.ratgeber-step-tip-orange {
    background-color: #fff2e8;
    border-radius: 4px;
    padding: 10px;
    border-left: 3px solid #ff7f00;
}

.ratgeber-tip-label {
    color: #005b9e;
}

.ratgeber-tip-label-orange {
    color: #ff7f00;
}

.ratgeber-tip-text {
    color: #005b9e;
}

.ratgeber-tip-text-blue {
    color: #005b9e;
}

/* Info Section */
.ratgeber-info-section {
    margin: 30px 0;
}

/* FAQ */
.ratgeber-faq-container {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #005b9e;
}

.ratgeber-faq-question {
    color: #005b9e;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: bold;
}

.ratgeber-faq-answer {
    color: #333;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Final CTA */
.ratgeber-final-cta {
    background-color: #fff2e8;
    border-radius: 6px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border-left: 5px solid #ff7f00;
}

/* Images */
.ratgeber-image-container {
    text-align: center;
    margin: 30px 0;
}

/* Lists */
.ratgeber-ordered-list {
    padding-left: 20px;
    margin-top: 10px;
}

.ratgeber-ordered-item {
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Responsive Design for Ratgeber Template */
@media (max-width: 768px) {
    .ratgeber-main-container {
        padding: 10px;
    }
    
    .ratgeber-hero-section {
        flex-direction: column;
    }
    
    .ratgeber-hero-text,
    .ratgeber-hero-image {
        min-width: 100%;
    }
    
    .ratgeber-comparison-cards {
        flex-direction: column;
    }
    
    .ratgeber-card-blue,
    .ratgeber-card-orange {
        min-width: 100%;
    }
    
    .ratgeber-application-grid {
        flex-direction: column;
    }
    
    .ratgeber-application-card {
        min-width: 100%;
    }
    
    .ratgeber-main-heading {
        font-size: 1.5em;
    }
    
    .ratgeber-section-heading {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .ratgeber-intro-box,
    .ratgeber-cta-box,
    .ratgeber-info-section,
    .ratgeber-tools-section {
        padding: 10px;
    }
    
    .ratgeber-main-heading {
        font-size: 1.3em;
        padding-left: 10px;
    }
    
    .ratgeber-section-heading {
        font-size: 1.3em;
    }
    
    .ratgeber-cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

