/* EnviroNest Content Pages Complete Styles - Optimized */
/* Used for: FAQ, Anleitung, Spezifikationen, Versand, Retourbeleid, Garantie, Landing Page */

/* NUCLEAR HEADER FIX - Overschrijf ALLES - Add to TOP of your CSS file */

/* STEP 1: Reset everything with extreme specificity */
.custom-header,
.custom-header *,
.custom-header .nav,
.custom-header .logo,
.custom-header .svg-logo,
.custom-header .nav-links {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

/* STEP 2: Force header to behave */
.custom-header {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    padding: 1rem 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* STEP 3: Force container to behave */
.custom-header .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    overflow-x: hidden !important;
}

/* STEP 4: Force nav to use space-between layout */
.custom-header .nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    height: 60px !important;
    overflow: hidden !important;
}

/* STEP 5: Force logo to normal size and position */
.custom-header .logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    width: auto !important;
    max-width: none !important;
    overflow: visible !important;
}

/* STEP 6: Force SVG logo to ORIGINAL size */
.custom-header .svg-logo,
.custom-header .logo-image {
    transform: scale(9) !important;
    margin-left: -45px !important;
    margin-top: 25px !important;
    transform-origin: left center !important;
    display: inline-block !important;
    height: 50px !important;
    width: auto !important;
    max-width: none !important;
    overflow: visible !important;
}

/* STEP 7: Force nav-links to right side */
.custom-header .nav-links {
    display: flex !important;
    gap: 2rem !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    overflow: visible !important;
}

.custom-header .nav-links a {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

.custom-header .nav-links a:hover {
    color: #0a754f !important;
}

/* STEP 8: Force hamburger to right position */
.custom-header .hamburger {
    display: none !important;
    flex-direction: column !important;
    cursor: pointer !important;
    padding: 5px !important;
    flex-shrink: 0 !important;
}

.custom-header .hamburger span {
    width: 25px !important;
    height: 3px !important;
    background: #333 !important;
    margin: 3px 0 !important;
    border-radius: 3px !important;
}

/* STEP 9: Mobile responsive */
@media (max-width: 768px) {
    .custom-header .hamburger {
        display: flex !important;
    }
    
    .custom-header .nav-links {
        display: none !important;
    }
    
    .custom-header .svg-logo,
    .custom-header .logo-image {
        transform: scale(6) !important;
        margin-left: -30px !important;
        margin-top: 15px !important;
    }
}

@media (max-width: 480px) {
    .custom-header .container {
        padding: 0 15px !important;
    }
    
    .custom-header .svg-logo,
    .custom-header .logo-image {
        transform: scale(4) !important;
        margin-left: -20px !important;
        margin-top: 10px !important;
    }
}

/* STEP 10: Global overflow prevention */
html {
    overflow-x: hidden !important;
}

body {
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* STEP 11: Alternative fallback - if scaling doesn't work */
.logo-fallback {
    height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
    transform: none !important;
    margin: 0 !important;
}

/* STEP 12: Force header to be exactly like homepage */
body .custom-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    background: white !important;
    overflow-x: hidden !important;
}

body .custom-header .nav {
    justify-content: space-between !important;
}

body .custom-header .svg-logo {
    transform: scale(9) !important;
    margin-left: -45px !important;
    margin-top: 25px !important;
    transform-origin: left center !important;
    display: inline-block !important;
}

/* Base content area styling */
.content-area {
    padding: 4rem 0;
    background: #fff;
}

.content-area .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Meer ruimte aan de zijkanten */
}

/* Content body verbeteringen */
.content-body {
    margin-top: 2rem;
    line-height: 1.7;
}

.content-body > * {
    margin-bottom: 3rem; /* Consistente spacing tussen secties */
}

/* Section titles verbetering */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #0a754f;
    margin-bottom: 3rem;
    font-weight: bold;
    padding: 0 20px; /* Extra padding voor mobiel */
}

/* Better typography */
.content-body h2,
.content-body h3 {
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #0a754f;
}

.content-body p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.7;
}

/* === INFO BOXES VERBETERINGEN === */

.info-box,
.warning-box,
.tip-box,
.prime-box {
    margin: 3rem auto; /* Centreer en geef meer ruimte */
    padding: 2.5rem 3rem; /* Meer padding */
    max-width: 1000px; /* Maximum breedte */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-box h3,
.warning-box h3,
.tip-box h3,
.prime-box h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* === VERSAND PAGE SPECIFIC === */

/* Shipping Options */
.shipping-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0 4rem 0;
}

.shipping-card {
    background: #f8fcf8;
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.shipping-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(10, 117, 79, 0.15);
    border-color: #0a754f;
}

/* NIEUWE PRIME CARD STYLING - MET KLEINE BADGE */
.shipping-card.prime {
    border-color: #ff9900;
    background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Verwijder de oude grote driehoek */
.shipping-card.prime::before,
.shipping-card.prime::after {
    display: none;
}

/* Nieuwe kleine Prime badge */
.prime-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff9900;
    color: white;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.2);
    z-index: 2;
}

.shipping-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.shipping-card h3 {
    color: #0a754f;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.shipping-card.prime h3 {
    color: #ff9900;
}

.shipping-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0a754f;
    margin-bottom: 1rem;
}

.shipping-card.prime .shipping-price {
    color: #ff9900;
}

.shipping-time {
    background: #e8f5e8;
    color: #0a754f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1rem;
}

.shipping-card.prime .shipping-time {
    background: #fff3e0;
    color: #ff9900;
}

.shipping-features {
    list-style: none;
    margin-top: 1rem;
}

.shipping-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.shipping-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0a754f;
    font-weight: bold;
}

.shipping-card.prime .shipping-features li::before {
    color: #ff9900;
}

/* SIMPELE TABEL FIX - Vervang de hele .shipping-table sectie */

.shipping-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 3rem auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    /* Verwijder display: block en overflow-x voor desktop */
}

.shipping-table table {
    width: 100%;
    /* Verwijder min-width voor desktop */
}

.shipping-table th {
    background: #0a754f;
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
}

.shipping-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e8f5e8;
    vertical-align: middle;
}

.shipping-table tr:last-child td {
    border-bottom: none;
}

.shipping-table tr:nth-child(even) {
    background: #f8fcf8;
}

.shipping-table tr:hover {
    background: #e8f5e8;
    transition: background-color 0.2s ease;
}

/* Kolom breedtes */
.shipping-table th:nth-child(1),
.shipping-table td:nth-child(1) {
    width: 20%;
}

.shipping-table th:nth-child(2),
.shipping-table td:nth-child(2) {
    width: 25%;
}

.shipping-table th:nth-child(3),
.shipping-table td:nth-child(3) {
    width: 20%;
}

.shipping-table th:nth-child(4),
.shipping-table td:nth-child(4) {
    width: 35%;
}

/* Specifieke kolom breedtes */
.shipping-table th:nth-child(1),
.shipping-table td:nth-child(1) {
    width: 20%; /* Verzendtype */
}

.shipping-table th:nth-child(2),
.shipping-table td:nth-child(2) {
    width: 25%; /* Bestelwaarde */
}

.shipping-table th:nth-child(3),
.shipping-table td:nth-child(3) {
    width: 20%; /* Kosten */
}

.shipping-table th:nth-child(4),
.shipping-table td:nth-child(4) {
    width: 35%; /* Levertijd */
}

.price-highlight {
    font-weight: bold;
    color: #0a754f;
}

.prime-highlight {
    font-weight: bold;
    color: #ff9900;
}

.free-highlight {
    color: #0a754f;
    font-weight: bold;
}

.prime-box {
    background: linear-gradient(135deg, #fff3e0 0%, #fff8f0 100%);
    border: 2px solid #ff9900;
    border-left: 4px solid #ff9900;
    border-radius: 15px;
    padding: 2.5rem 3rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.prime-box h3 {
    color: #ff9900;
    margin-bottom: 1.5rem;
}

/* === INSTALLATION/ASSEMBLY SPECIFIC === */

.installation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0 4rem 0;
}

.installation-card {
    background: #f8fcf8;
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.installation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(10, 117, 79, 0.15);
    border-color: #0a754f;
}

.installation-card h3 {
    color: #0a754f;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.product-image-install,
.product-image-small {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* === STEP GUIDES === */

.quick-guide {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.steps-grid,
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.step-item,
.process-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e8f5e8;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.step-item:hover,
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(10, 117, 79, 0.15);
    border-color: #0a754f;
}

.step-number {
    background: linear-gradient(135deg, #0a754f 0%, #085a3d 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(10, 117, 79, 0.3);
}

.step-item h4,
.step-title {
    color: #0a754f;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

.process-step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: #e8f5e8;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* === FAQ SPECIFIC === */

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0 4rem 0;
}

.faq-category-card {
    background: #f8fcf8;
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.faq-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(10, 117, 79, 0.15);
    border-color: #0a754f;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.faq-category-card h3 {
    color: #0a754f;
    margin-bottom: 1rem;
    font-weight: bold;
}

.faq-category-card p {
    color: #666;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.faq-item:hover {
    border-color: #0a754f;
    box-shadow: 0 5px 15px rgba(10, 117, 79, 0.1);
}

.faq-question {
    background: #f8fcf8;
    padding: 2rem;
    cursor: pointer;
    font-weight: bold;
    color: #0a754f;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: #e8f5e8;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid #e8f5e8;
}

.faq-answer.active {
    padding: 2rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: #0a754f;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Search functionality */
.faq-search {
    margin-bottom: 3rem;
    text-align: center;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e8f5e8;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #0a754f;
    box-shadow: 0 0 0 3px rgba(10, 117, 79, 0.1);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
}

/* Filter functionality */
.faq-item.hidden,
.faq-section.hidden {
    display: none !important;
}

.faq-item {
    display: block;
}

/* === SPEZIFIKATIONEN PAGE SPECIFIC === */

/* Product Comparison */
.product-comparison {
    margin-bottom: 4rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.product-spec-card {
    background: #f8fcf8;
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.product-spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(10, 117, 79, 0.15);
    border-color: #0a754f;
}

.product-spec-card h3 {
    color: #0a754f;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.spec-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th {
    background: #0a754f;
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.spec-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e8f5e8;
}

.spec-table tr:nth-child(even) td {
    background: #f8fcf8;
}

.spec-table tr:hover td {
    background: #e8f5e8;
}

.spec-label {
    font-weight: 600;
    color: #0a754f;
}

/* Feature Highlights */
.feature-highlights {
    margin: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-item {
    background: #f8fcf8;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e8f5e8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(10, 117, 79, 0.15);
    border-color: #0a754f;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    color: #0a754f;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Compatibility */
.compatibility-section {
    margin: 3rem 0;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.compatibility-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e8f5e8;
}

.compatibility-item.compatible {
    border-color: #0a754f;
    background: #e8f5e8;
}

.compatibility-item.not-compatible {
    border-color: #ff6b6b;
    background: #ffe8e8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 20px;
    margin: 3rem 0;
}

/* === INFO SECTIONS FOR ALL PAGES === */

.info-section {
    margin-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.info-card {
    background: white;
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.info-card:hover {
    border-color: #0a754f;
    box-shadow: 0 8px 30px rgba(10, 117, 79, 0.15);
    transform: translateY(-5px);
}

.info-card h3 {
    color: #0a754f;
    margin-bottom: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.info-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #444;
}

.info-card ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

/* === CONTACT BUTTONS VERBETERINGEN === */

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

.contact-button {
    padding: 2rem 1.5rem !important;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 117, 79, 0.2);
    display: block;
    text-decoration: none;
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 117, 79, 0.3);
    text-decoration: none;
}

/* === EXTRA POLISH === */

/* Better focus states */
.contact-button:focus,
.faq-question:focus {
    outline: 3px solid rgba(10, 117, 79, 0.3);
    outline-offset: 2px;
}

/* Gradient backgrounds for sections */
.info-section:nth-child(even) {
    background: linear-gradient(135deg, #fafcfa 0%, #f5f9f5 100%);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 20px;
}

/* Loading states - shimmer effect */
.info-card,
.shipping-card,
.product-spec-card,
.feature-item {
    position: relative;
    overflow: hidden;
}

.info-card::before,
.shipping-card::before,
.product-spec-card::before,
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before,
.shipping-card:hover::before,
.product-spec-card:hover::before,
.feature-item:hover::before {
    left: 100%;
}

/* Scroll indicator voor mobile gebruikers */
.shipping-table-container {
    position: relative;
}

.shipping-table-container::after {
    content: '← Swipe voor meer →';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #666;
    display: none;
}

/* === LANDING PAGE ADDITIONS === */
/* Landing page wrapper */
.environest-landing {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Hero Section - Landing page specific */
.hero {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #0a754f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 450px;
    width: 100%;
    margin: 2rem auto 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Products Section - Landing page specific */
.products {
    padding: 4rem 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background: #f8fcf8;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8f5e8;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 117, 79, 0.1);
    border-color: #0a754f;
}

.product-image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-image:hover {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.3rem;
    color: #0a754f;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.product-features li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 2rem;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0a754f;
    font-weight: bold;
    font-size: 1.2rem;
}

.price {
    font-size: 2rem;
    color: #0a754f;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Benefits Section - Landing page specific */
.benefits {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: #f8fcf8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8f5e8;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 117, 79, 0.1);
    border-color: #0a754f;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.3rem;
    color: #0a754f;
    margin-bottom: 1rem;
    font-weight: bold;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefit-item ul {
    list-style: none;
    text-align: left;
}

.benefit-item li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0a754f;
    font-weight: bold;
}

/* Reviews Section - Landing page specific */
.reviews {
    padding: 4rem 0;
    background: #fff;
}

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

.review {
    background: #f8fcf8;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0a754f;
    transition: all 0.3s;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 117, 79, 0.1);
}

.stars {
    color: #ffad33;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.reviewer {
    font-weight: bold;
    color: #0a754f;
}

/* Trust Section - Landing page specific */
.trust {
    padding: 3rem 0;
    background: #f8fcf8;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-item {
    padding: 1.5rem;
    transition: all 0.3s;
    text-align: center;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.trust-item h3 {
    color: #0a754f;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.trust-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Amazon Button Styling - Landing page specific */
.amazon-btn {
    display: inline-block;
    background: #ff9900;
    color: #232f3e;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.amazon-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    text-decoration: none;
    color: #232f3e;
}

.amazon-btn-secondary {
    background: #146eb4;
    color: white;
    box-shadow: 0 4px 15px rgba(20, 110, 180, 0.3);
}

.amazon-btn-secondary:hover {
    background: #0f5a94;
    color: white;
    box-shadow: 0 6px 20px rgba(20, 110, 180, 0.4);
}

/* PDF Download Button */
.pdf-download {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.pdf-download:hover {
    background: #c0392b;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* CTA Section - Landing page specific */
.cta-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #0a754f;
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(10, 117, 79, 0.3);
}

.cta-button:hover {
    background: #085a3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 117, 79, 0.4);
    color: white;
    text-decoration: none;
}

.cta-benefits {
    margin-top: 2rem;
    color: #666;
    font-style: italic;
}

/* Footer styling voor landing page - CORRECTED */
.custom-footer {
    background: #0a754f !important; /* GROEN ipv grijs */
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #ffffff !important; /* WIT ipv groen */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #e8f5e8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e8f5e8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.language-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-link:hover,
.language-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.lang-text {
    font-weight: 500;
    margin-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    margin: 0.25rem 0;
    color: #e8f5e8;
    font-size: 0.9rem;
}

.language-switcher-mobile {
    display: none;
}

/* Flag styling voor language switcher */
.flag {
    width: 20px;
    height: 15px;
    margin-right: 10px;
    border-radius: 2px;
    display: inline-block;
}

.flag-de {
    background: linear-gradient(to bottom, #000 33%, #ff0000 33%, #ff0000 66%, #ffcc00 66%);
}

.flag-gb {
    background: #012169;
    position: relative;
}

.flag-nl {
    background: linear-gradient(to bottom, #ff0000 33%, #ffffff 33%, #ffffff 66%, #0000ff 66%);
}

/* Section Background kleuren */
.specs-section {
    background: #f8fcf8;
}

.installation-section {
    background: #f8fcf8;
}

/* === ALGEMENE WOORDAFBREKING FIXES === */

/* Algemene woordafbreking voor alle content */
.content-body,
.info-box,
.warning-box,
.tip-box,
.prime-box,
.info-card,
.shipping-card,
.contact-button {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

/* Specifiek voor Duitse lange woorden */
.content-body p,
.info-box p,
.warning-box p,
.tip-box p,
.info-card p,
.shipping-card p {
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
}

/* Voor HTML lang attribute */
html[lang="de"],
html[lang="de-DE"] {
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
}

/* Voor tabellen - voorkomen dat tekst uit cellen valt */
.shipping-table td,
.spec-table td {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 0;
}

/* Container overflow voorkomen */
.container,
.content-area .container {
    overflow-x: hidden;
}

/* Flexbox items woordafbreking */
.info-grid .info-card,
.shipping-options .shipping-card {
    min-width: 0;
    word-wrap: break-word;
}

/* === RESPONSIVE DESIGN === */

@media (max-width: 768px) {
    .content-area .container {
        padding: 0 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .info-box,
    .warning-box,
    .tip-box,
    .prime-box {
        margin: 2rem 0;
        padding: 2rem;
    }
    
    .process-steps,
    .info-grid,
    .shipping-options,
    .comparison-grid,
    .features-grid,
    .faq-categories,
    .installation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .info-card,
    .shipping-card,
    .product-spec-card,
    .feature-item,
    .process-step,
    .installation-card,
    .faq-category-card {
        padding: 2rem 1.5rem;
    }
    
    .content-body > * {
        margin-bottom: 2rem;
    }
    
    /* Mobile responsive - ALLEEN voor kleine schermen */
    .shipping-table {
        display: block;
        overflow-x: auto;
        margin: 2rem 10px;
        border-radius: 10px;
        font-size: 0.85rem;
        width: calc(100% - 20px);
    }
    
    .shipping-table table {
        min-width: 420px;
        width: 100%;
    }
    
    .shipping-table th,
    .shipping-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    /* Maak kolommen smaller op mobile */
    .shipping-table th:nth-child(1),
    .shipping-table td:nth-child(1) {
        width: 18%;
    }
    
    .shipping-table th:nth-child(2),
    .shipping-table td:nth-child(2) {
        width: 22%;
    }
    
    .shipping-table th:nth-child(3),
    .shipping-table td:nth-child(3) {
        width: 18%;
    }
    
    .shipping-table th:nth-child(4),
    .shipping-table td:nth-child(4) {
        width: 42%;
    }
    
    /* Prime badge responsive */
    .prime-badge {
        padding: 3px 6px;
        font-size: 0.65rem;
        top: 10px;
        right: 10px;
    }
    
    .shipping-table-container::after {
        display: block;
    }
    
    /* Landing page mobile responsive */
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
	
	.benefit-item,
    .content-card {
        padding: 1.5rem;
    }
	
	 .installation-step {
        flex-direction: column;
        text-align: center;
    }

    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .language-switcher {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .language-switcher-mobile {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .language-link-mobile {
        display: flex;
        align-items: center;
        padding: 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .language-link-mobile:hover,
    .language-link-mobile.active {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
        text-decoration: none;
    }
    
    /* Specifieke fixes voor mobile schermen */
    .content-body,
    .info-box,
    .warning-box,
    .tip-box,
    .info-card,
    .shipping-card {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Headers ook woordafbreking geven */
    .content-body h1,
    .content-body h2,
    .content-body h3,
    .section-title {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Contact buttons */
    .contact-button {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .content-area .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .info-box,
    .warning-box,
    .tip-box,
    .prime-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .info-card,
    .shipping-card,
    .product-spec-card,
    .feature-item,
    .process-step,
    .installation-card,
    .faq-category-card {
        padding: 1.5rem;
    }
    
    .faq-question,
    .faq-answer.active {
        padding: 1.5rem;
    }
    
    .shipping-table {
        margin: 1.5rem 5px;
        border-radius: 8px;
        width: calc(100% - 10px);
    }
    
    .shipping-table th,
    .shipping-table td {
        padding: 0.4rem 0.2rem;
        font-size: 0.75rem;
    }
    
    .shipping-table table {
        min-width: 360px;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
	
	.content-card,
    .benefit-item {
        padding: 1rem;
    }
	
	  .installation-step {
        padding: 1rem;
    }
    
    /* Prime badge zeer klein op mobile */
    .prime-badge {
        padding: 2px 5px;
        font-size: 0.6rem;
        top: 8px;
        right: 8px;
    }
    
    /* Landing page kleine mobile responsive */
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .review {
        padding: 1.5rem;
    }
    
    /* Extra aggressive woordafbreking voor zeer kleine schermen */
    .content-body p,
    .info-box p,
    .warning-box p {
        word-break: break-all;
        overflow-wrap: anywhere;
    }
}

/* Extra kleine schermen */
@media (max-width: 400px) {
    .shipping-table {
        margin: 1rem 5px;
        width: calc(100% - 10px);
    }
    
    .shipping-table table {
        min-width: 340px;
    }
    
    .shipping-table th,
    .shipping-table td {
        padding: 0.3rem 0.15rem;
        font-size: 0.7rem;
    }
}

/* Verwijder de block display en overflow-x voor desktop */
@media (min-width: 769px) {
    .shipping-table {
        display: table;
        overflow-x: visible;
        white-space: normal;
    }
    
    .shipping-table table {
        width: 100%;
        min-width: auto;
    }
    
    .shipping-table th,
    .shipping-table td {
        white-space: normal;
        padding: 1.5rem;
    }
}

/* Fallback voor browsers die hyphens niet ondersteunen */
@supports not (hyphens: auto) {
    .content-body p,
    .info-box p,
    .warning-box p {
        word-break: break-all;
    }
}

/* === PRINT STYLES === */

@media print {
    .shipping-card,
    .info-card,
    .product-spec-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .content-area .container {
        max-width: none;
        padding: 0;
    }
    
    .prime-badge {
        background: #ccc !important;
        color: #000 !important;
    }
}

/* Meest kritieke missing classes */

.content-card {
    background: #f8fcf8;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e8f5e8;
    transition: all 0.3s;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 117, 79, 0.1);
    border-color: #0a754f;
}

.content-card h3 {
    color: #0a754f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-card ul {
    list-style: none;
    margin: 1rem 0;
}

.content-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.content-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0a754f;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Content Sections */
.section {
    padding: 4rem 0;
    background: #fff;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #0a754f;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: #f8fcf8;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e8f5e8;
    transition: all 0.3s;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 117, 79, 0.1);
    border-color: #0a754f;
}

.content-card h3 {
    color: #0a754f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-card ul {
    list-style: none;
    margin: 1rem 0;
}

.content-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.content-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0a754f;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Installation Steps */
.installation-step {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 2rem;
    background: #f8fcf8;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #0a754f;
    text-align: left; 
}

.step-number {
    background: #0a754f;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem; 
    flex-shrink: 0;
}



.installation-step > div:last-child {
    text-align: left; 
    width: 100%; 
}

.installation-step h3 {
    color: #0a754f;
    margin-bottom: 0.5rem;
    text-align: left;
}

.installation-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left; 
}

.installation-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}


