/* Basis kleuren en fonts uit jouw bestaande CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f8fafc;
    color: #0f172a;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-size: 24px;
    font-weight: 800;
}
.logo span {
    color: #2c7da0;
}
nav {
    display: flex;
    align-items: center;
}
nav li::marker {
    content: none;
}
nav a {
    text-decoration: none;
    color: #0f172a;
    margin-left: 30px;
    font-weight: 500;
    transition: 0.3s;
}
nav a:hover {
    color: #2c7da0;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    height: 3px;
    width: 25px;
    background: #0f172a;
    margin: 4px 0;
    border-radius: 2px;
}

/* ABOUT SECTION */
.about-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 8%;
}
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.about-image img {
    max-width: 300px;
    border-radius: 15px;
}
.about-text {
    flex: 1;
}
.about-text h1 {
    font-size: 36px;
    color: #2c7da0;
    margin-bottom: 20px;
}
.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* KERNWAARDEN */
.values {
    margin-top: 60px;
    text-align: center;
}
.values h2 {
    font-size: 30px;
    color: #2c7da0;
    margin-bottom: 40px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.value-card {
    background: #eef4f8;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid #d1dfe7;
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: #2c7da0;
}
.value-card span.material-icons {
    font-size: 40px;
    color: #2c7da0;
    margin-bottom: 10px;
    display: block;
}
.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.value-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
}

/* FOOTER */
footer {
    background: #0f172a;
    color: white;
    padding: 60px 8%;
    font-size: 15px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-section {
    flex: 1 1 220px;
}
.footer-section h2,
.footer-section h3 {
    color: #2c7da0;
    margin-bottom: 15px;
    font-weight: 700;
}
.footer-section p,
.footer-section ul li {
    color: #ffffffcc;
    margin-bottom: 8px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li a {
    color: #2c7da0;
    text-decoration: none;
}
.footer-section ul li a:hover {
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ffffff80;
}

/* RESPONSIVE */
@media(max-width:768px){
    nav {
        position:absolute;
        top:80px;
        right:0;
        background:white;
        flex-direction:column;
        width:220px;
        padding:20px;
        box-shadow:0 20px 40px rgba(0,0,0,0.1);
        display:none;
    }
    nav.active {
        display:flex;
    }
    nav a {
        margin:15px 0;
    }
    .hamburger {
        display:flex;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image img {
        margin-bottom: 20px;
    }
}
