:root {
            --primary-color: #2ecc71;
            --secondary-color:  rgb(18 58 72 / 84%);
            --accent-color: #f39c12;
            --light-bg: #f9f9f9;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: var(--light-bg);
            width: 100%;
            min-height: 100vh;
            overflow-x: hidden; /* Prevent horizontal scroll */
            display: flex;
            flex-direction: column;
        }
 

        header {
            background: white;
            padding: 2rem 1rem;
            text-align: center;
            border-bottom: 3px solid var(--primary-color);
        }

        .container {
            max-width: 1000px;
            margin: auto;
            padding: 20px;
            flex: 1;
            width: 100%;
        }

        .badge {
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }

        /* Comparison Table Styling */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .comparison-table th {
            background: var(--secondary-color);
            color: white;
            padding: 15px;
            text-align: left;
        }

        .comparison-table td {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }

        .product-img {
            width: 100px;
            height: auto;
            border-radius: 5px;
        }

        .rating {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .btn-affiliate {
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
            display: inline-block;
        }

        .btn-affiliate:hover {
            background: #27ae60;
        }

        /* Guide Section */
        .guide-content {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-top: 40px;
        }

    

        /* Ensure basic resets are applied */


/* 1. The Container (Relative to itself) */
.main-image-section {
    position: relative; /* Acts as the "map" for the absolute overlay */
    width: 100%;
    height: 80vh; /* Adjust height, e.g., 80% of viewport height */
    overflow: hidden; /* Crops image if height is fixed */
}

/* 2. The Image (Absolute, Full Width, Below the Text) */
.balkon-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ESSENTIAL: Keeps aspect ratio, crops as needed */
    z-index: 1; /* Layers image at the back */
}

/* 3. The Overlay (Light Blue, Fixed Position) */
.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background-color: rgb(18 58 72 / 84%);
    z-index: 2; /* Layers above the image */
    
    /* 4. Center the Content using Flexbox */
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center;    /* Vertically center */
    color: #fff; /* Default text color (White looks best on blue) */
}

/* 5. Center the actual text within the centered box */
.overlay-content {
    text-align: center;
    padding: 20px;
    max-width: 850px; /* Optional: limits text width on large screens */
}

/* Style the text elements specifically */
.text-overlay h1 { margin: 0 0 15px; font-size: 3rem; }
.text-overlay p { font-size: 1.5rem; margin: 0 0 10px; }
.text-overlay h2 { font-size: 1.2rem; margin: 0; font-weight: normal;}

        /* Language Switcher Styling */
.lang-switcher {
    position: absolute;
    top: 25px;
    right: 50px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    z-index: 1000;
    min-width: 120px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lang-selected {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-dropdown {
    display: none; /* Hidden by default */
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee;
    background: white;
    position: absolute;
    width: 100%;
}

.lang-dropdown li {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.lang-dropdown li:hover {
    background: #f0f0f0;
}

.lang-dropdown.show {
    display: block;
}

.brand-comparison {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.brand-box {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.brand-box:last-child {
    border-bottom: none;
}

.brand-box h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.brand-box p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}
.product-thumb {
    width: 100px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
    object-fit: contain; /* Ensures the image isn't distorted */
    background: #fdfdfd;
    padding: 5px;
    border: 1px solid #eee;
}

/* On mobile, make the image slightly larger */
@media (max-width: 600px) {
    .product-thumb {
        width: 120px;
    }
}
.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}

.back-btn:hover {
    opacity: 0.7;
    text-decoration: underline;
}

footer {
    background-color: rgb(18 58 72 / 84%);
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
}

.footer-content {
    margin: 0 auto;
}

.affiliate-disclaimer {
    font-style: italic;
    margin: 15px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

      @media (max-width: 768px) {
            .comparison-table thead { display: none; }
            .comparison-table td { display: block; text-align: center; }
            .comparison-table td:before { content: attr(data-label); font-weight: bold; display: block; margin-bottom: 5px; }
            .overlay-content {
                max-width: 80%;
            }
        }