﻿/* ====================================================================================== Intro text */
.scrollable-content {
    flex: 1 0 auto; /* Zorgt ervoor dat de content de beschikbare ruimte inneemt */
    padding-top: 10px;
    overflow-x: hidden; /* Voorkom horizontale scroll */
}

/* Zorg ervoor dat andere secties voldoende ruimte hebben */
section {
    position: relative;
    min-height: 300px; /* Zorgt ervoor dat secties voldoende ruimte innemen */
    margin-bottom: 40px; /* Voeg marge toe zodat de secties elkaar niet overlappen */
}

    section.intro {
        display: flex;
        justify-content: space-between; /* Zorgt ervoor dat de tekst en afbeelding naast elkaar staan */
        align-items: center;
        padding: 20px;
        margin-top: 80px; /* Deze padding zorgt ervoor dat de sectie niet direct tegen de bovenkant staat */
        background-color: rgba(37, 63, 110, 0.9); /* Semi-transparant blauw */
        width: 100%; /* Zorgt ervoor dat de sectie de volledige breedte inneemt */
        box-sizing: border-box; /* Houdt rekening met paddings en marges bij het berekenen van de breedte */
        color: white; /* Zorgt ervoor dat de tekst leesbaar blijft */
    }

        section.intro .text-content {
            width: 60%; /* Stelt de breedte in op 50% van de pagina */
            margin: 0 auto; /* Centreert de text-content in het midden van de pagina */
            text-align: left; /* Zorgt ervoor dat de tekst links uitgelijnd blijft */
            padding: 20px; /* Optioneel: voegt wat ruimte toe rond de tekst */
        }

            section.intro .text-content h3 {
                padding-top: 10px;
                margin-bottom: 0px;
            }

            section.intro .text-content .starttoday {
                margin-top: 0px;
            }

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #20B485;
    color: white;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #24C79B;
    }

/* ====================================================================================== Transcription process explained */
section.transcriptieproces {
    margin-top: 30px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.process-container {
    position: relative;
    width: 60%;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.square-left {
    background-color: #20B485;
    width: 30%;
    padding: 50px 20px 50px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: white;
    z-index: 1;
    margin-top: 120px;
}

.square-right {
    background-color: #2C808F;
    width: 70%;
    padding: 20px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: -10%; /* Dit zorgt voor de overlapping */
    z-index: 0;
}

div.process-detail {
    padding-left: 100px;
    padding-right: 80px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
}

.step-number {
    background-color: white;
    color: #0056b3;
    font-size: 16px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    margin: 0;
    padding-top: 5px;
}

.step-content p {
    margin: 5px 0 0;
    font-size: 14px;
}

.step-line {
    border-left: 2px solid white;
    height: 30px;
    margin-left: 20px;
}

.step h3 {
    margin-bottom: 0px;
}

.step p {
    margin-top: 5px;
    padding-bottom: 20px;
}

/* ====================================================================================== Why RechtVerbaal */
/* Stijl voor de gehele sectie */
section.key-points {
    background-color: rgba(37, 63, 110, 1); /* No transparant blauw */
    padding: 30px 0;
    width: 100%;
    box-sizing: border-box;
}

    section.key-points .container {
        width: 90%; /* Houdt wat ruimte aan de zijkanten voor een gebalanceerde lay-out */
        margin: 0 auto;
        text-align: left;
    }

    /* Titel stijl */
    section.key-points h2 {
        text-align: center;
        color: #FFF; /* Blauwe kleur om consistent te blijven met de huisstijl */
        margin-bottom: 40px;
    }

    /* Kolommen in een rij */
    section.key-points .points-row {
        display: flex;
        justify-content: space-between; /* Zorgt voor gelijke afstand tussen de kolommen */
        flex-wrap: wrap; /* Zorgt ervoor dat de kolommen op kleinere schermen naar een nieuwe rij gaan */
    }

    /* Stijl voor de kolommen */
    section.key-points .point {
        background-color: #2C808F;
        width: 22%; /* Breedte van elke kolom (minder dan 25% zodat er ruimte is voor de afstand tussen kolommen) */
        padding: 20px;
        margin-bottom: 100px; /* Ruimte aan de onderkant voor mobiele weergave */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 2px solid white;
    }

        section.key-points .point:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Titel van elk punt */
        section.key-points .point h3 {
            color: #FFF; /* Blauwe accentkleur voor titels */
            margin-bottom: 15px;
        }

        /* Tekst in elk punt */
        section.key-points .point p {
            line-height: 1.6;
            color: #FFF; /* Zachte zwarttint voor tekst */
        }

/* Responsieve aanpassing voor kleinere schermen */
@media (max-width: 768px) {
    section.key-points .point {
        width: 45%; /* Kolommen worden breder op mobiele apparaten */
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    section.key-points .point {
        width: 100%; /* Kolommen worden volledig breed op kleine schermen */
        margin-bottom: 20px;
    }
}

/* ====================================================================================== FAQ */
.faq-section {
    width: 60%;
    margin: 0 auto;
    background-color: white;
    padding: 20px 50px 40px 50px;
    border-radius: 8px;
}

.faq-container {
    display: flex;
}

.faq-categories {
    width: 35%;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 5px;
    background-color: #20B485;
    font-size: 1.1em;
    /*            border-right: 1px solid #ddd;
                                                                                                        */
}

    .faq-categories ul {
        list-style: none;
        padding: 0;
    }

        .faq-categories ul li {
            margin-bottom: 10px;
        }

            .faq-categories ul li a {
                text-decoration: none;
                color: #FFF;
                font-weight: 600;
                cursor: pointer;
            }

.faq-questions {
    width: 65%;
    padding-left: 20px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    color: #FFF;
    background-color: #2C808F;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    background-color: #E0F4F5;
    padding: 10px;
    border-radius: 5px;
}

.faq-toggle {
    font-size: 18px;
    margin-left: 10px;
}

.faq-question.open .faq-toggle {
    transform: rotate(45deg);
}


/* ====================================================================================== In de praktijk */
.practice-section {
    width: 60%;
    margin: 60px auto; /* Voeg 60px marge bovenaan en onderaan toe */
    padding: 20px 50px 30px 50px;
    text-align: center;
    background-color: #2C808F;
    border-radius: 8px;
}

    .practice-section h2 {
        text-align: left;
        margin-bottom: 30px;
        color: #FFF;
    }

.practice-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Zorgt ervoor dat de kolommen naar een nieuwe rij gaan bij kleinere schermen */
}

.practice-column {
    background-color: #E0F4F5;
    padding: 20px;
    margin: 0 0px 10px 0px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Licht schaduweffect */
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 15%;
    text-align: center;
    min-width: 250px;
}

    .practice-column h3 {
        margin-bottom: 10px;
    }

    .practice-column p {
        font-size: 1em;
    }

    .practice-column:hover {
        background-color: #20B485; /* Iets donkerdere achtergrondkleur bij hover */
        transform: translateY(-10px); /* Lichte beweging omhoog bij hover */
        color: #FFF;
    }

/* ====================================================================================== Security and Privacy */
section.privacy {
    margin-top: 30px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.process-container2 {
    position: relative;
    width: 80%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.square-left2 {
    background-color: #20B485;
    width: 30%;
    padding: 50px 20px 50px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: white;
    z-index: 1;
    margin-top: 120px;
}

.square-right2 {
    background-color: #2C808F;
    width: 70%;
    padding: 20px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: -10%; /* Dit zorgt voor de overlapping */
    z-index: 0;
}

div.process-detail2 {
    padding-left: 150px;
    padding-right: 120px;
}

/*.process-step {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
}

.step-number {
    background-color: white;
    color: #0056b3;
    font-size: 16px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    margin: 0;
    padding-top: 5px;
}

.step-content p {
    margin: 5px 0 0;
    font-size: 14px;
}

.step-line {
    border-left: 2px solid white;
    height: 30px;
    margin-left: 20px;
}

.step h3 {
    margin-bottom: 0px;
}

.step p {
    margin-top: 5px;
    padding-bottom: 20px;
}*/

/* ====================================================================================== Abonnementen */
section.pricing {
    width: 80%;
    margin: 60px auto; /* Voeg 60px marge bovenaan en onderaan toe */
    padding: 20px 50px 30px 50px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
}

.signup-container {
    display: flex;
    justify-content: space-between; /* Zorgt ervoor dat de tekst en afbeelding naast elkaar staan */
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    justify-content: center;
    width: 100%;
}

/* Stijlen voor de login-box */
.signup-box {
    width: 70%;
    border-radius: 10px; /* Afgeronde hoeken */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    min-height: 390px;
    z-index: 100;
}

    .signup-box p {
        width: 80%;
        font-size: 1.0em;
    }

.register-section h2 {
    text-align: left;
    margin-bottom: 30px;
    color: #20B485;
}

.subscription-container {
    margin: 0 auto; /* Centreer de container */
    padding: 0 20px; /* Voeg wat padding toe aan beide kanten */
}

.subscription-header {
    text-align: left;
    margin: 20px 0; /* Ruimte boven en onder de titel */
}

    .subscription-header h3 {
        font-size: 26px;
        font-weight: bold;
        color: #333;
    }

.subscription-options {
    display: flex;
    justify-content: space-between; /* Verspreid de kolommen gelijkmatig */
}

.subscription-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    /*    justify-content: space-between;
*/ border: 1px solid #ccc;
    border-radius: 10px;
    margin-left: 30px;
    background-color: #2C808F;
    text-align: center;
    color: #FFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

    .subscription-option h3 {
        margin: 0px;
        padding: 10px 0 10px 0;
        font-size: 1.1em;
        margin-bottom: 10px;
        background-color: rgba(37, 63, 110, 0.9);
    }

    .subscription-option .subscription-subtitle {
        width: 100%;
        font-size: 0.9em;
        margin-bottom: 10px;
        text-decoration: underline;
    }

    .subscription-option ul {
        list-style-type: circle;
        padding: 0 20px 0 20px;
        margin-left: 20px;
        margin-right: 20px;
        font-size: 0.9em;
        margin-bottom: 20px;
        text-align: left; /* Zorg voor linker uitlijning van de tekst */
    }

        .subscription-option ul li {
            margin-bottom: 10px;
        }

.subscription-costs {
    margin: auto 10px 10px 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(224, 244, 245, 0.5);
    color: #000;
    display: flex;
    overflow: hidden;
}

.cost-content {
    width: 100%;
    margin: auto 0 0 0; /* Zorgt ervoor dat de inhoud naar de onderkant wordt uitgelijnd */
    font-size: 0.8em;
}

    .cost-content p {
        text-align: left;
        padding-left: 20px;
    }

    .cost-content .discount {
        color: rgba(37, 63, 110, 1.0);
    }

.signupButton {
    margin-top: 50px;
    margin-left: 30px;
    border: none;
    padding: 10px 20px;
    background-color: #20B485;
    color: white;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    width: 350px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

    .signupButton:hover {
        background-color: #24C79B;
    }


/* ====================================================================================== Contact */
/* Contact section */
section.contact-section {
    margin-top: 60px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.contact-section .process-container {
    position: relative;
    width: 60%;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-section .square-left {
    background-color: #2C808F; /* Omgekeerde kleur */
    width: 80%; /* Groter linkervlak */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: white;
    z-index: 1; /* Lager dan het rechtervlak */
    margin-top: -40px; /* Plaatst het linkervlak hoger */
}

.contact-section .square-right {
    background-color: #20B485; /* Omgekeerde kleur */
    width: 20%; /* Kleiner rechtervlak */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: -10%; /* Zorgt voor overlapping */
    z-index: 2; /* Hogere z-index dan het linkervlak */
    color: white;
    position: relative;
    top: 60px; /* Plaatst het rechtervlak lager */
}


/* Contact form styling */
.contact-form {
    padding: 0 180px 0 0;
}

    .contact-form form {
        display: flex;
        flex-direction: column;
        width: 85%;
    }

    .contact-form input, .contact-form textarea {
        width: 95%;
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 5px;
        border: none;
        font-size: 1em;
    }

    .contact-form textarea {
        min-height: 150px;
        margin-bottom: 0px;
    }

    .contact-form button {
        display: inline-block; /* Zorg ervoor dat de button niet 100% breed is */
        width: auto; /* Zet de breedte op auto om de inhoud te passen */
        padding: 10px 20px; /* Padding om de grootte van de button te definiëren */
        font-size: 1.1em; /* Zorg voor dezelfde tekstgrootte als in de introtekst */
        background-color: #20B485; /* Knopkleur overeenkomend met de introtekst */
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        text-align: center;
        max-width: 200px;
    }

        .contact-form button:hover {
            background-color: #24C79B;
        }

#charCount {
    width: 95%;
    padding-top: 0px;
    padding-bottom: 10px;
    padding-left: 15px;
    text-align: right;
    font-size: 0.8em;
}
