.vorteile-section {
            width: 100%;
            background-color: var(--bg-dark);
            padding: 80px 10%;
        }

        
        .vorteile-top {
            max-width: 1100px;
            margin: 0 auto 0;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .vorteile-top .info-image {
            width: 48%;
            flex-shrink: 0;
        }

        .vorteile-top .info-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 3px;
            display: block;
        }

        .vorteile-top .info-text {
            width: 52%;
        }

        .vorteile-top .info-text h2 {
            font-size: 1.5rem;
            margin-bottom: 18px;
        }

        .vorteile-top .info-text p {
            font-size: 0.85rem;
            color: #b0b0b0;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        /* Bottom part: title + 3 product cards */
        .vorteile-bottom {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .vorteile-bottom h3 {
            font-family: 'Barlow', Arial, sans-serif;
            font-size: 1.6rem;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        .folie-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4px;
            margin-bottom: 20px;
        }

        .folie-card {
            background: #1a1a1a;
            padding: 22px 16px 20px;
            text-align: center;
            border: 1px solid #2a2a2a;
            transition: border-color 0.3s;
        }

        .folie-card:hover {
            border-color: var(--primary-orange);
        }

        .folie-card .folie-name {
            font-family: 'Barlow Condensed', Arial, sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary-orange);
            margin-bottom: 14px;
        }

        .folie-card .folie-divider {
            width: 100%;
            height: 1px;
            background: #333;
            margin-bottom: 14px;
        }

        .folie-card .folie-specs {
            font-family: 'Barlow', Arial, sans-serif;
            font-size: 0.78rem;
            color: #cccccc;
            line-height: 1.6;
        }

        .folie-card .folie-specs .garantie {
            display: block;
            margin-top: 4px;
            color: #888;
            font-size: 0.72rem;
        }

        .vorteile-note {
            font-family: 'Barlow', Arial, sans-serif;
            font-size: 0.7rem;
            color: #666;
            letter-spacing: 0.5px;
            margin-top: 12px;
        }

        .vorteile-footer-link {
            text-align: center;
            margin-top: 40px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .vorteile-top {
                flex-direction: column;
            }

            .vorteile-top .info-image,
            .vorteile-top .info-text {
                width: 100%;
            }

            .vorteile-top .info-text {
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            .folie-cards {
                grid-template-columns: 1fr;
            }

            .vorteile-section {
                padding: 50px 5%;
            }
        }
