 /* Alle Styles nur für About-Page mit Prefix "about-" */
    
    /* Page Hero */
    .about-page-hero {
        padding: 9rem 0 2.5rem;
        background: #1E73BE;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .about-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #1E73BE 0%, #155a94 100%);
        opacity: 1;
    }

    .about-hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: rgba(255, 255, 255, 0.05);
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .about-hero-background::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
        height: 60%;
        background: rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    }

    .about-page-hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
    }

    .about-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        backdrop-filter: blur(10px);
    }

    .about-breadcrumb a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .about-breadcrumb a:hover {
        color: #ffffff;
    }

    .about-breadcrumb i {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .about-breadcrumb span {
        color: #ffffff;
        font-weight: 500;
    }

    .about-page-hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #ffffff;
        line-height: 1.2;
    }

    .about-page-hero-description {
        font-size: 1.15rem;
        max-width: 700px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.7;
        margin: 0;
    }

    /* Company Story */
    .about-company-story {
        padding: 5rem 0;
        background: #ffffff;
    }

    .about-story-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .about-story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .about-story-text {
        max-width: 600px;
    }

    .about-section-subtitle {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-subtitle-line {
        width: 50px;
        height: 2px;
        background: #1E73BE;
    }

    .about-section-subtitle span {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .about-section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #000000;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .about-story-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        color: #666666;
        margin-bottom: 1.5rem;
    }

    .about-story-highlights {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .about-highlight-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .about-highlight-item i {
        color: #1E73BE;
        font-size: 1.2rem;
    }

    .about-highlight-item span {
        font-size: 1rem;
        color: #333333;
        font-weight: 500;
    }

    .about-story-image {
        height: 500px;
    }

    .about-story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Values Section */
    .about-values-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    .about-values-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .about-values-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    .about-values-header .about-section-subtitle {
        justify-content: center;
    }

    .about-values-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .about-value-card {
        background: #ffffff;
        padding: 2.5rem 2rem;
        border-left: 3px solid #1E73BE;
        transition: all 0.3s ease;
    }

    .about-value-card:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .about-value-icon {
        width: 60px;
        height: 60px;
        background: #1E73BE;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .about-value-icon i {
        font-size: 1.5rem;
        color: #ffffff;
    }

    .about-value-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 1rem;
    }

    .about-value-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    /* Stats Section */
    .about-stats-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, #1E73BE 0%, #155a94 100%);
        color: #ffffff;
    }

    .about-stats-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        text-align: center;
    }

    .about-stat-box h3 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .about-stat-box p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin: 0;
    }

    /* Why Choose Us Section */
    .about-why-choose-section {
        padding: 5rem 0;
        background: #ffffff;
    }

    .about-why-choose-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .about-why-choose-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    .about-why-choose-header .about-section-subtitle {
        justify-content: center;
    }

    .about-section-description {
        font-size: 1.05rem;
        color: #666666;
        line-height: 1.7;
        margin: 1rem 0 0 0;
    }

    .about-why-choose-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .about-why-item {
        background: #f8f9fa;
        padding: 2rem;
        border-left: 3px solid #1E73BE;
        transition: all 0.3s ease;
    }

    .about-why-item:hover {
        background: #ffffff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .about-why-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #e8e8e8;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .about-why-item h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.75rem;
    }

    .about-why-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    /* CTA Section */
    .about-cta-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    .about-cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
        text-align: center;
    }

    .about-cta-container h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 1rem;
    }

    .about-cta-container p {
        font-size: 1.1rem;
        color: #666666;
        margin-bottom: 2rem;
    }

    .about-cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-btn-cta-primary,
    .about-btn-cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 0;
    }

    .about-btn-cta-primary {
        background: #1E73BE;
        color: #ffffff;
        border: 2px solid #1E73BE;
    }

    .about-btn-cta-primary:hover {
        background: #155a94;
        border-color: #155a94;
    }

    .about-btn-cta-secondary {
        background: transparent;
        color: #1E73BE;
        border: 2px solid #1E73BE;
    }

    .about-btn-cta-secondary:hover {
        background: #f0f7ff;
    }

    /* Responsive */
    @media screen and (max-width: 1200px) {
        .about-values-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .about-why-choose-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 968px) {
        .about-page-hero {
            padding: 9rem 0 2rem;
        }

        .about-page-hero-title {
            font-size: 2.5rem;
        }

        .about-page-hero-description {
            font-size: 1rem;
        }

        .about-story-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .about-story-text {
            order: 1;
            max-width: 100%;
        }

        .about-story-image {
            order: 2;
            height: 400px;
        }

        .about-values-grid {
            grid-template-columns: 1fr;
        }

        .about-stats-container {
            grid-template-columns: repeat(2, 1fr);
        }

        .about-why-choose-grid {
            grid-template-columns: 1fr;
        }

        .about-cta-buttons {
            flex-direction: column;
        }

        .about-btn-cta-primary,
        .about-btn-cta-secondary {
            width: 100%;
            justify-content: center;
        }
    }

    @media screen and (max-width: 768px) {
        .about-page-hero {
            padding: 7rem 0 1.5rem;
        }

        .about-page-hero-title {
            font-size: 2rem;
        }

        .about-page-hero-description {
            font-size: 0.95rem;
        }

        .about-section-title {
            font-size: 1.8rem;
        }

        .about-story-image {
            height: 300px;
        }

        .about-stats-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    @media screen and (max-width: 480px) {
        .about-page-hero-title {
            font-size: 1.75rem;
        }

        .about-section-title {
            font-size: 1.5rem;
        }

        .about-stat-box h3 {
            font-size: 2.5rem;
        }
    }