/* Reset & Variables */
:root {
    --primary-color: #0078D4;
    --secondary-color: #50E6FF;
    --dark-blue: #004E8C;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --black: #333333;
}

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

/* Base styles */
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--black);
}

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

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav__menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(45deg, var(--primary-color), var(--dark-blue));
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 0;
    color: var(--white);
}

.hero__content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* USPs Section */
.usps {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--black);
    opacity: 0.7;
    font-size: 1.2rem;
}

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

.usp-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.usp-card__icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.usp-card h3 {
    margin-bottom: 15px;
    color: var(--dark-blue);
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card__icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.service-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-card ul li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Contact Form */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer__section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.social-icons a:hover {
    opacity: 0.8;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav__menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    /* Reset & Variables */
:root {
    /* Nieuwe huisstijl kleuren */
    --primary-color: #2B4C7E;    /* Diep marineblauw */
    --secondary-color: #567EBB;  /* Helder blauw */
    --dark-blue: #1C2541;       /* Donkerblauw voor tekst */
    --light-gray: #E9ECEF;      /* Lichtgrijs voor backgrounds */
    --white: #ffffff;
    --black: #1C2541;           /* Aangepast naar donkerblauw */
    --success-color: #06A77D;    /* Groen voor success states */
}

/* De rest van de originele CSS behouden, alleen kleuren aanpassen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--black);
}

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

/* Header Styles - aangepaste kleuren */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* ... rest van de header styles ... */

/* Hero Section - aangepaste gradient */
.hero {
    min-height: 100vh;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 0;
    color: var(--white);
}

/* ... rest van de hero styles ... */

/* Button Styles - aangepaste kleuren */
.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* ... rest van de button styles ... */

/* Services Section - aangepaste kleuren */
.service-card ul li:before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
}

/* Footer - aangepaste kleuren */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

/* De rest van de CSS blijft hetzelfde */
}
/*# sourceMappingURL=main.css.map */

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%; /* Zorgt voor gelijke hoogte */
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Specifieke styling voor diensten cards */
.service-card.dienst {
    text-align: left;
}

.service-card.dienst ul {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1; /* Duwt de button naar beneden */
}

.service-card.dienst ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-card.dienst ul li:before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
}

.service-card.dienst .btn {
    align-self: flex-start;
}

/* Stats specifieke styling */
.service-card.stat {
    padding: 40px 30px;
}

.service-card.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 15px 0;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header styling */
.page-header {
    background: linear-gradient(45deg, var(--primary-color), var(--dark-blue));
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Values Section styling */
.values {
    padding: 80px 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive design voor values */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Footer styling */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer__section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Footer Links */
.footer__links {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer__links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__links a:hover {
    opacity: 1;
}

.footer__links .separator {
    color: var(--white);
    opacity: 0.5;
    margin: 0 15px;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer__links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer__links .separator {
        display: none;
    }
}

/* Hero Badges */
.hero__badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
}

.badge i {
    font-size: 20px;
    color: var(--white);
}

.badge span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero__badges {
        gap: 15px;
        margin-top: 30px;
    }

    .badge {
        padding: 10px 20px;
    }

    .badge i {
        font-size: 18px;
    }

    .badge span {
        font-size: 13px;
    }
}

/* Form Message Styling */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Terms & Privacy Content Styling */
.terms {
    padding: 60px 0;
    background: var(--white);
}

.terms__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms__section {
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.terms__section:last-child {
    margin-bottom: 0;
}

.terms__section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms__section p {
    color: var(--black);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.terms__section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.terms__section a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms {
        padding: 40px 0;
    }

    .terms__section {
        padding: 20px;
    }

    .terms__section h2 {
        font-size: 1.3rem;
    }
}