/* Basis reset en algemene stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header stijlen */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    color: #e63946;
}

/* Hero sectie */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 120px 0;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Secties algemeen */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e63946;
}

/* Merken sectie */
.brands {
    background-color: #fff;
}

.brand-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.brand-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    max-width: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.brand-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.brand-logo img {
    max-height: 80px;
    max-width: 100%;
}

.brand-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.brand-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.brand-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.brand-link:hover {
    background-color: #c1121f;
}

/* Over ons sectie */
.about {
    background-color: #f8f9fa;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

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

.contact-info a {
    color: #e63946;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #f48c96;
}

.copyright {
    font-size: 14px;
    color: #aaa;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .brand-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
}