/* /samenwerking/css/style.css */

/* --- Hero Sectie --- */
.page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/header-paginas.jpeg');
    /* Hergebruik een relevante afbeelding */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-top: 60px;
    /* Ruimte voor de vaste header */
}

.page-hero h1 {
    font-size: 48px;
    margin: 0 0 10px 0;
}

.page-hero p {
    font-size: 20px;
    margin: 0;
    opacity: 0.9;
}

/* --- Algemene Content Sectie --- */
.content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.content-intro h2 {
    font-size: 36px;
    color: #343a40;
    margin-bottom: 20px;
}

.content-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #6c757d;
}

/* --- Grid met Voordelen --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fbeeec;
    /* Lichte themakleur */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.benefit-icon i {
    font-size: 28px;
    color: #c0392b;
    /* Themakleur */
}

.benefit-card h3 {
    font-size: 22px;
    color: #343a40;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
}

/* --- Call to Action Sectie --- */
.cta-section {
    background-color: #f8f9fa;
    /* Lichte achtergrond om het te scheiden */
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #343a40;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.btn-cta {
    display: inline-block;
    background-color: #c0392b;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background-color: #a93226;
    transform: translateY(-3px);
}