/* Modern CSS Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Properties */
:root {
    --color-primary: #004B98;
    --color-primary-light: #0066CC;
    --color-primary-dark: #003A7A;
    --color-text: #2C3E50;
    --color-text-light: #6C7A89;
    --color-border: #E5E9F2;
    --color-background: #F8FAFC;
    --color-white: #FFFFFF;
    --color-success: #2ECC71;
    --color-warning: #F1C40F;
    --color-error: #E74C3C;
    --color-green: #80b961;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    --border-radius: 8px;
    --border-radius-lg: 10px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.05);
    
    --transition: all 0.3s ease;
}

/* Base styles */
body#klantenservice #wrapper {
    padding-top: 0;
    padding-bottom: 40px;
}

body#klantenservice #main .page-content {
    margin-bottom: 1.5625rem;
    border: 0;
}

/* Banner */
.klantenservice-banner {
    width: 100%;
/*    height: 300px;*/
    overflow: hidden;
    position: relative;
}

.klantenservice-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    border-radius: var(--border-radius-lg);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-lg);
}

/* Container */
.klantenservice-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    z-index: 1;
    position: inherit;
    margin-top: 1rem;
}

/* Left Column */
.left-column {
    width: 300px;
    flex-shrink: 0;
}

.left-column h1 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.left-column .description {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.left-column .description a {
    color: #004B98;
    text-decoration: none;
}

.product-category {
    margin-bottom: var(--spacing-lg);
}

.product-category h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

img.menu-icon {
    width: 22px !important;
    height: 22px !important;
    margin-right: 10px;
    display: block;
}

.section-link {
    padding-left: 30px;
}

.tab-description {
    margin: 20px 0;
    line-height: 1.6;
    color: #666;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

h2 {
    color: #444;
    margin: 30px 0 15px;
}

.section-description {
    margin: 15px 0;
    color: #666;
}

/* Navigation */
.ks-nav-menu {
    background: white;
    overflow: hidden;
}

.ks-nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
    color: black;
}

.ks-nav-item:last-child {
    border-bottom: none;
}

.ks-nav-item.ks-active {
    background: var(--color-green);
    color: white;
}

.ks-menu-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.ks-nav-item.ks-active .ks-menu-icon {
    filter: brightness(0) invert(1);
}

/* Right Column */
.right-column {
    flex: 1;
    padding: 20px;
}

/* Content */
body#klantenservice .tab-content {
    display: none;
}

body#klantenservice .tab-content.active {
    display: block;
}

/* Page Intro */
.page-intro {
    margin-bottom: 40px;
}

.page-title {
    font-weight: 800;
    font-size: 2.25em;
    margin: 0 0 15px;
    line-height: 1.1111111;
    text-transform: uppercase;
}

.page-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-weight: normal;
}

/* FAQ Section */
.ks-faq-section {
    margin-bottom: 60px;
}

.section-title {
    font-weight: 600;
    font-size: 1.25em;
    margin: 1.6em 0 .75em;
    line-height: 1.6;
    text-transform: uppercase;
    padding: 0;
}

.section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0;
}

.ks-faq-list {
    max-width: 900px;
    border-radius: var(--border-radius-lg);
    border: 1px solid #e5e5e5;
}

.ks-faq-item {
    border-bottom: 1px solid #E5E5E5;
}

.ks-faq-item:last-child {
    border-bottom: none;
}

.ks-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background: none;
    border: none;
    text-align: left;
}

.ks-faq-icon {
    font-size: 28px;
    color: var(--color-green);
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.ks-faq-item.active .ks-faq-icon {
    transform: rotate(45deg);
}

.ks-faq-answer {
    display: none;
    padding: 25px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    border-top: 1px solid #f5f5f5;
    margin-top: -1px;
}

.ks-faq-item.active .ks-faq-answer {
    display: block;
}

.ks-faq-question:focus {
    outline: none;
}

.ks-faq-question:hover {
    background: #f9f9f9;
}

.ks-faq-question span:first-child {
    padding-right: 20px;
}

/* Contact Section */
.contact-section {
    max-width: 100%;
    padding: 40px 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: var(--border-radius-lg);
    margin-top: 40px;
}

.contact-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-description {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #666;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    min-width: 300px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 15px;
}

.contact-icon img {
    width: 40px;
    height: 40px;
}

.contact-card h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.contact-phone {
    color: #666;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .klantenservice-container {
        flex-direction: column;
    }

    .left-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 300px;
    }
}

.tab-group {
    margin-bottom: var(--spacing-sm);
}

.section-group {
    margin-top: var(--spacing-xs);
    margin-left: var(--spacing-lg);
}

.section-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    margin-left: 28px;
    color: var(--color-text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1.5;
}

.section-link:hover {
    color: var(--color-primary);
    background: #F8F9FA;
}

.section-link.active {
    color: var(--color-primary);
    background: #EBF5FF;
}

.section-list {
    margin-left: 28px;
    display: none;
}

.section-list.active {
    display: block;
} 
.card {
    border: 1px solid white !important;
}
#wrapper {
    padding-top: 0px;
    padding-bottom: 40px;
}