/* Voeg deze regels toe aan het begin van je CSS-bestand */
body {
    padding: 0 20px; /* Voegt 20px padding toe aan de linker- en rechterkant van de body */
}

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

/* Pas de bestaande header-stijl aan */
header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 20px; /* Voeg horizontale padding toe */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0; /* Zorg ervoor dat de header de volledige breedte beslaat */
    z-index: 1000;
}

/* Pas de main-stijl aan */
main {
    padding-top: 80px; /* Adjust based on header height */
    max-width: 1200px; /* Beperk de maximale breedte van de inhoud */
    margin: 0 auto; /* Centreer de inhoud */
}

/* Pas de section-stijl aan */
section {
    padding: 4rem 20px; /* Voeg horizontale padding toe aan secties */
}

/* Pas de footer-stijl aan */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 1rem 20px; /* Voeg horizontale padding toe */
    margin-top: 4rem;
}

/* Voor kleinere schermen, verminder de padding */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    .container, section {
        padding: 0 10px;
    }

    header {
        padding: 1rem 10px;
    }
}

/* styles.css */
:root {
    --primary-color: #e61e25;
    --secondary-color: #e81d25;
    --accent-color: #e81d25;
    --text-color: #333;
    --background-color: #f8f9fa;
    --white: #ffffff;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

main {
    padding-top: 80px; /* Adjust based on header height */
}

section {
    padding: 4rem 0;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
}

.cta-button, .buy-button, .contact-button, .submit-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover, .buy-button:hover, .contact-button:hover, .submit-button:hover {
    background-color: #e85555;
}

.voordelen-grid, .service-grid, .price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.voordeel-item, .service-item, .price-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.voordeel-item:hover, .service-item:hover, .price-item:hover {
    transform: translateY(-5px);
}

.voordeel-item i, .service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-item.featured {
    border: 2px solid var(--primary-color);
}

.price-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.price-content {
    padding: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
}

ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    position: relative;
}

li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
}

.video-container {
    max-width: 800px;
    margin: 2rem auto;
    aspect-ratio: 16 / 9;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

footer p {
    text-align: center;
    margin-top: 1rem;
}


@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        margin: 0.5rem 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Volumekorting styling */
.additional-pricing-info {
    background-color: var(--background-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.additional-pricing-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.additional-pricing-info ul {
    list-style-type: none;
    padding: 0;
}

.additional-pricing-info li {
    margin-bottom: 0.5rem;
}

.additional-pricing-info p {
    margin-top: 1rem;
}

/* Play buttons (app store badges) styling */
.app-links {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.app-store-badge {
    height: 40px;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

/* Webphone link styling */
.webphone-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.webphone-link:hover {
    background-color: #2980b9;
}
/* Aanvullende CSS voor de nieuwe secties */
#over-ons, #extra-voordelen, #aanbod {
    background-color: var(--background-color);
    padding: 4rem 0;
}

#over-ons ul, #extra-voordelen ul, #aanbod ul {
    list-style-type: none;
    padding-left: 0;
}

#over-ons li, #extra-voordelen li, #aanbod li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

#over-ons li::before, #extra-voordelen li::before, #aanbod li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

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

.voordeel-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.voordeel-item:hover {
    transform: translateY(-5px);
}

.voordeel-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rounded-image-container {
    width: 100%;
    max-width: 600px; /* Adjust this value based on your desired image size */
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 20px; /* This creates rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
}

.rounded-image {
    width: 100%;
    height: auto;
    display: block;
}