/* Algemene Stijlen */
body {
    background-color: #1a1a1a;  /* Donkerdere achtergrondkleur voor diepte */
    color: #fff;  /* Witte tekst voor contrast */
    font-family: 'Montserrat', sans-serif;  /* Modern, strak lettertype */
    margin: 0;
    padding: 0;
}

/* Hoofdinhoud */
.private-info-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 15px;
    background-color: #2d2d2d; /* Donkere achtergrond voor inhoud */
}

/* Introductie Sectie */
.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #66c27b;  /* Groene accentlijn */
    padding-bottom: 40px;
}

.intro-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
}

.intro-image {
    max-width: 45%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6); /* Sterkere schaduw voor diepte */
}

.intro-text {
    max-width: 55%;
    color: #ddd; /* Lichtere kleur voor de tekst */
}

.intro-text h1 {
    font-size: 2.8rem;
    color: #66c27b;  /* Groene accentkleur */
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center; /* Centraal uitlijnen voor balans */
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: lighter;
    text-align: center;  /* Tekst centreren voor meer visuele aantrekkelijkheid */
}

/* Tarief Sectie */
.pricing {
    background-color: #444;  /* Donkergrijze achtergrond */
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4); /* Sterkere schaduw voor visuele diepte */
}

.pricing-container h2 {
    font-size: 2.2rem;
    color: #66c27b;
    margin-bottom: 15px;
    font-weight: bold;
}

.pricing-container p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Fotogalerij Sectie */
.gallery {
    margin-top: 60px;
}

.gallery h2 {
    font-size: 2.5rem;
    color: #66c27b;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Zwaardere schaduw bij hover voor diepte */
}

/* Hoe Het Werkt Sectie */
.how-it-works {
    background-color: #444; /* Zelfde donkergrijs als voor de tarief sectie */
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.how-it-works h2 {
    font-size: 2.8rem;
    color: #66c27b;
    margin-bottom: 20px;
    text-align: center;
}

.how-it-works p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}

.how-it-works ol {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 800px;
    padding-left: 20px;
}

.how-it-works ol li {
    margin-bottom: 15px;
    padding-left: 10px;
    position: relative;
}

/* ----------------------------------------------- Mobile Specific Styles ----------------------------------------------- */

/* Mediaquery voor kleinere schermen */
@media (max-width: 768px) {
    .private-info-page {
        padding: 30px;  /* Verklein padding voor mobiele schermen */
        max-width: 100%;  /* Zorg ervoor dat de inhoud niet te smal wordt */
    }

    .intro {
        flex-direction: column;  /* Stapel de elementen verticaal */
        text-align: center;
    }

    .intro-container {
        flex-direction: column;
        align-items: center;
    }

    .intro-image, .intro-text {
        max-width: 100%; /* Zorg ervoor dat ze de volledige breedte gebruiken op mobiele schermen */
    }

    .intro-text h1 {
        font-size: 2rem;  /* Maak de titel iets kleiner voor mobiele apparaten */
    }

    .pricing, .gallery, .how-it-works {
        padding: 20px; /* Verminder padding voor kleinere schermen */
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);  /* Twee kolommen op kleinere schermen */
    }

    .how-it-works ol {
        max-width: 100%;  /* Maak de lijst breder op mobiele schermen */
    }
}
