* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

a {
    color: #8B6914;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header - compact banner */
header {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.header-image {
    width: 100%;
    display: block;
}

/* Navigation */
nav {
    background: #fff;
    padding: 10px 20px;
    max-width: 960px;
    margin: 0 auto;
    border-bottom: 1px solid #ddd;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

nav ul li a {
    display: block;
    color: #4a6a9a;
    padding: 8px 20px;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #2a4a7a;
    border-bottom: 2px solid #4a6a9a;
    text-decoration: none;
}

/* Main content */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Intro - text above, large photo below */
.intro {
    margin-bottom: 40px;
}

.intro-text {
    margin-bottom: 25px;
}

.intro-text p {
    margin-bottom: 12px;
}

.intro-photo {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 4px;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-top: 3px solid #8B6914;
}

.service-card h3 {
    color: #8B6914;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.service-card .price-note {
    font-size: 0.85rem;
    color: #888;
}

/* Market schedule */
.schedule {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.schedule h2 {
    color: #8B6914;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

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

.schedule th,
.schedule td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.schedule th {
    color: #8B6914;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.schedule tr:hover td {
    background: #fdf8ee;
}

/* Quote */
.quote {
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    color: #8B6914;
    padding: 30px;
    margin-bottom: 20px;
}

/* Page content (voorwaarden, privacy, contact) */
.page-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.page-content h2 {
    color: #8B6914;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.page-content h3 {
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.page-content p {
    margin-bottom: 12px;
}

.page-content ul {
    margin: 10px 0 15px 25px;
}

.page-content li {
    margin-bottom: 6px;
}

.company-info {
    background: #fdf8ee;
    border-left: 3px solid #8B6914;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
}

.company-info p {
    margin-bottom: 4px;
}

/* Contact page */
.contact-box {
    text-align: center;
    padding: 40px;
}

.contact-box .email-link {
    display: inline-block;
    font-size: 1.3rem;
    color: #8B6914;
    border: 2px solid #8B6914;
    padding: 12px 30px;
    border-radius: 6px;
    margin-top: 20px;
    transition: background 0.2s, color 0.2s;
}

.contact-box .email-link:hover {
    background: #8B6914;
    color: #fff;
    text-decoration: none;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 25px 20px;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 40px;
}

footer .footer-info {
    max-width: 960px;
    margin: 0 auto;
}

footer .footer-info p {
    margin-bottom: 4px;
}

footer a {
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-photo {
        max-width: 100%;
    }

    .services {
        grid-template-columns: 1fr;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .page-content {
        padding: 25px;
    }
}
