/* Base Styles */
:root {
    --primary-color: #0a84ff;
    --secondary-color: #f5f5f7;
    --text-color: #1d1d1f;
    --light-text: #86868b;
    --border-color: #d2d2d7;
    --success-color: #34c759;
    --accent-color: #5e5ce6;

    /* Blau Montgó specifieke kleuren */
    --montgo-blue: #4a90e2;
    --montgo-light-blue: #a8d0ff;
    --montgo-dark-blue: #2c5ea0;
    --mediterranean-sand: #f5e8dc;
    --mediterranean-sky: #c3e0ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.5;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

h1 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.button:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.button.secondary:hover {
    background-color: rgba(10, 132, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.button-full {
    width: 100%;
}

.button-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.text-center {
    text-align: center;
}

.form-message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: none;
    font-size: 16px;
    line-height: 1.5;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(210, 210, 215, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

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

nav ul li {
    margin-left: 24px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    white-space: nowrap;
    padding: 4px 0;
}

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

/* Desktop optimalisatie voor kleinere schermen */
@media (min-width: 1025px) and (max-width: 1280px) {
    nav ul li {
        margin-left: 18px;
    }
    
    nav ul li a {
        font-size: 13px;
    }
}

/* Verberg desktop menu en toon hamburger vanaf tablet */
@media (max-width: 1024px) {
    nav ul {
        display: none;
        position: fixed;
        top: 92px; /* Onder header + AFM banner */
        left: 0;
        width: 100%;
        height: calc(100vh - 92px);
        flex-direction: column;
        background-color: white;
        padding: 32px 24px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
        align-items: flex-start;
    }

    nav ul li {
        margin: 0;
        margin-bottom: 24px;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 24px;
    }

    nav ul li:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }
    
    nav ul li a {
        font-size: 18px;
        font-weight: 600;
        display: block;
        padding: 12px 0;
    }

    nav ul.show {
        display: flex;
    }
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

/* Toon hamburger menu vanaf tablet formaat */
@media (max-width: 1024px) {
    .mobile-menu-button {
        display: block;
    }
}

/* Hamburger naar X animatie */
.hamburger-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: background-color 0.3s ease;
}

.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: transform 0.3s ease;
    left: 0;
}

.hamburger-icon:before {
    top: -8px;
}

.hamburger-icon:after {
    top: 8px;
}

/* X transformatie wanneer menu open is */
.hamburger-active .hamburger-icon {
    background-color: transparent;
}

.hamburger-active .hamburger-icon:before {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-active .hamburger-icon:after {
    transform: translateY(-8px) rotate(-45deg);
}

/* AFM Melding CSS - Toe te voegen aan style.css */
.afm-notice {
    background-color: #ffe100;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.afm-notice .container {
    padding: 6px 24px;
    display: flex;
    justify-content: center;
}

.afm {
    color: #000;
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1.2;
    transition: opacity 0.2s ease;
    font-size: 20px;
}

.afm:hover {
    opacity: 0.9;
    color: #000;
}

.afm__svg {
    width: 28px;
    height: 14px;
    margin-left: 8px;
    fill: #000;
    flex-shrink: 0;
}

/* Pas de bestaande header aan zodat deze onder de AFM-melding komt */
header {
    top: 26px;
    /* De hoogte van de AFM-melding + padding */
}

/* Pas de project-hero padding aan vanwege de AFM-melding */
.project-hero {
    padding-top: 230px;
    /* Originele waarde + hoogte van de AFM-melding */
}

.hero,
.extended-hero {
    padding-top: 190px;
    /* Originele waarde + hoogte van de AFM-melding */
}

/* AFM pagina specifieke stijlen */
.afm-page {
    background-color: #f5f7fa;
}

.afm-hero {
    background-color: #fff;
    text-align: center;
    padding: 120px 0 60px;
    position: relative;
}

.afm-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(245, 247, 250, 1) 100%);
}

.afm-notice-large {
    display: inline-flex;
    align-items: center;
    background-color: #ffe100;
    padding: 16px 24px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.afm-notice-large .afm__svg {
    width: 40px;
    height: 20px;
    margin-left: 16px;
}

.afm-content {
    padding: 60px 0;
}

.afm-section {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 40px;
    margin-bottom: 40px;
}

.afm-section h2 {
    margin-bottom: 24px;
    font-size: 28px;
}

.afm-highlight {
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.afm-highlight p {
    margin-bottom: 0;
}

.afm-icon {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 8px;
}

.afm-list {
    list-style: none;
    padding-left: 10px;
    margin: 20px 0;
}

.afm-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.afm-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.afm-cta {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    padding: 40px;
    color: white;
    text-align: center;
    margin: 60px 0;
}

.afm-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.afm-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}

.afm-cta .button {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 14px 30px;
    font-size: 16px;
}

.afm-cta .button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Mobiele aanpassingen */
@media (max-width: 768px) {
    .afm-notice .container {
        padding: 6px 10px;
    }

    .afm {
        font-size: 11px;
    }

    .afm__svg {
        width: 24px;
        height: 12px;
    }

    /* Pas de header ook aan voor mobiel */
    header {
        top: 24px;
        /* Iets minder ruimte op mobiel */
    }

    .afm-section {
        padding: 30px 20px;
    }

    .afm-notice-large {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
    }

    .afm-notice-large .afm__svg {
        margin-left: 0;
        margin-top: 10px;
    }

    .afm-cta {
        padding: 30px 20px;
    }
}

/* AFM Melding CSS */
.afm-notice {
    background-color: #FFF;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.afm-notice .container {
    padding: 6px 24px;
    display: flex;
    justify-content: center;
}

.afm {
    color: #000;
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1.2;
    transition: opacity 0.2s ease;
}

.afm:hover {
    opacity: 0.9;
    color: #000;
}

.afm__svg {
    width: 28px;
    height: 14px;
    margin-left: 8px;
    fill: #000;
    flex-shrink: 0;
}

/* Pas de bestaande header aan zodat deze onder de AFM-melding komt */
header {
    top: 26px;
    /* De hoogte van de AFM-melding + padding */
}

/* Pas de project-hero padding aan vanwege de AFM-melding */
.project-hero {
    padding-top: 230px;
    /* Originele waarde + hoogte van de AFM-melding */
}

.hero,
.extended-hero {
    padding-top: 190px;
    /* Originele waarde + hoogte van de AFM-melding */
}

/* Mobiele aanpassingen */
@media (max-width: 768px) {
    .afm-notice .container {
        padding: 6px 10px;
    }

    .afm {
        font-size: 11px;
    }

    .afm__svg {
        width: 24px;
        height: 12px;
    }

    /* Pas de header ook aan voor mobiel */
    header {
        top: 24px;
        /* Iets minder ruimte op mobiel */
    }
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(to bottom, var(--secondary-color), white);
    text-align: center;
}

.hero h1 {
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 21px;
    color: var(--light-text);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

/* Investment Options Section */
.investment-options {
    padding: 80px 0;
}

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

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 21px;
    margin-bottom: 8px;
}

.card-subtitle {
    color: var(--light-text);
    margin-bottom: 16px;
}

.investment-details {
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--light-text);
}

.detail-value {
    font-weight: 600;
}

.highlight {
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text {
    max-width: 560px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

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

/* Track Record Section */
.track-record {
    padding: 80px 0;
    background-color: white;
}

.track-record-grid {
    display: grid;
    gap: 40px;
}

.track-record-card {
    background-color: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-record-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.track-record-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: white;
}

.track-record-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.track-record-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.track-record-image-container:hover img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.track-record-content {
    padding: 40px;
}

.track-record-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.track-record-location {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.track-record-location::before {
    content: "📍";
    margin-right: 8px;
}

.track-record-description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 32px;
}

.track-record-stats {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.stat-row:last-child {
    margin-bottom: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 6px;
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.stat-value.highlight {
    color: var(--success-color);
}

.track-record-timeline {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.track-record-timeline h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.timeline-event {
    font-size: 15px;
    color: var(--light-text);
}

.track-record-highlight {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 4px solid var(--success-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.track-record-highlight svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.track-record-highlight p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #155724;
}

.track-record-highlight strong {
    color: #0d4521;
}

/* Responsive Track Record */
@media (max-width: 768px) {
    .track-record {
        padding: 60px 0;
    }

    .track-record-images {
        grid-template-columns: 1fr;
    }

    .track-record-image-container {
        height: 250px;
    }

    .track-record-content {
        padding: 24px;
    }

    .track-record-title {
        font-size: 24px;
    }

    .track-record-description {
        font-size: 16px;
    }

    .stat-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-value {
        font-size: 20px;
    }

    .track-record-stats,
    .track-record-timeline {
        padding: 20px;
    }

    .timeline {
        padding-left: 28px;
    }

    .timeline-item {
        padding-bottom: 20px;
    }

    .track-record-highlight {
        padding: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    color: var(--light-text);
    margin-bottom: 12px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.testimonials-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    margin: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    height: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 16px;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
}

.author-title {
    font-size: 14px;
    color: var(--light-text);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.testimonial-nav {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.2s ease;
    margin: 0 10px;
}

.testimonial-nav:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.testimonial-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 0 16px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.accordion-header {
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title {
    font-size: 18px;
    font-weight: 500;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-color);
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 2px;
    height: 16px;
    left: 11px;
    top: 4px;
}

.accordion-icon::after {
    width: 16px;
    height: 2px;
    left: 4px;
    top: 11px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-icon::before {
    transform: rotate(90deg);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 16px;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-form {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-option input {
    margin-right: 8px;
}

.brochure-options {
    background-color: var(--secondary-color);
    padding: 32px;
    border-radius: 16px;
}

.brochure-title {
    margin-bottom: 24px;
}

.brochure-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.feature-icon {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 20px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--text-color);
    color: white;
    text-align: center;
}

.newsletter-container {
    max-width: 640px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 24px;
}

.newsletter p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
}

.newsletter-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-button:hover {
    background-color: var(--accent-color);
}

/* Footer */
footer {
    padding: 48px 0;
    background-color: var(--secondary-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.footer-description {
    color: var(--light-text);
    margin-bottom: 24px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--light-text);
    transition: color 0.2s ease;
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 48px;
    color: var(--light-text);
    font-size: 14px;
}

/* Investment Calculator */
.calculator {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    margin-top: 48px;
}

.calculator-title {
    text-align: center;
    margin-bottom: 32px;
}

.calculator-field {
    margin-bottom: 24px;
}

.calculator-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.range-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.range-slider {
    flex: 1;
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    background: var(--accent-color);
}

.range-value {
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

.calculator-results {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.result-label {
    color: var(--light-text);
}

.result-value {
    font-weight: 600;
    font-size: 18px;
}

.result-highlight {
    font-size: 24px;
    color: var(--primary-color);
}

/* Blau Montgó specifieke stijlen */

/* Project Hero sectie met achtergrondafbeelding */
.project-hero {
    position: relative;
    padding: 200px 0 120px;
    color: white;
    overflow: hidden;
    background-color: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/montgo-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

.project-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: -1;
}

.project-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 24px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Introductie sectie */
.intro-section {
    padding: 80px 0;
    background-color: white;
}

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

.intro-text {
    font-size: 21px;
    line-height: 1.6;
    color: var(--light-text);
}

/* Locatie en Design secties */
.location-section,
.design-section {
    padding: 100px 0;
}

.location-section {
    background-color: var(--secondary-color);
}

.design-section {
    background-color: white;
}

/* Lifestyle sectie */
.lifestyle-section {
    padding: 80px 0;
}

.lifestyle-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.lifestyle-section p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 16px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-text);
}

.montgo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
}

.montgo-grid.visible {
    animation: fadeIn 0.5s ease forwards;
}

.montgo-grid.reverse {
    direction: rtl;
}

.montgo-grid.reverse .text-content {
    direction: ltr;
}

.montgo-grid.reverse .image-content {
    direction: ltr;
}

.text-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-color);
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-text);
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Bereikbaarheid sectie */
.accessibility-section {
    padding: 80px 0;
    background-color: var(--montgo-light-blue);
}

.accessibility-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.map-container {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

.text-box {
    flex: 1;
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.text-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--montgo-dark-blue);
}

.text-box p {
    font-size: 18px;
    line-height: 1.6;
}

/* Location Highlights sectie - voor feature grids */
.location-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.location-highlight {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.location-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    font-size: 32px;
}

.location-highlight h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.location-highlight p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 0;
}

/* Investeringssectie */
.montgo-investment-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.investment-content {
    max-width: 960px;
    margin: 0 auto;
}

.investment-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-color);
}

.investment-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--light-text);
}

.montgo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.montgo-feature {
    background-color: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.montgo-feature.visible {
    animation: fadeIn 0.5s ease forwards;
}

.montgo-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.montgo-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--mediterranean-sky);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
}

.montgo-feature-icon img {
    width: 32px;
    height: 32px;
}

.montgo-feature h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.montgo-feature p {
    font-size: 24px;
    color: var(--montgo-dark-blue);
    font-weight: 600;
    margin-bottom: 0;
}

.investment-note {
    font-size: 20px;
    color: var(--montgo-dark-blue);
    margin-top: 24px;
}

/* Gallery sectie */
.gallery-section {
    padding: 100px 0;
    background-color: white;
}

.gallery-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item.visible {
    animation: fadeIn 0.5s ease forwards;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Sectie */
.montgo-cta-section {
    padding: 100px 0;
    background-color: var(--montgo-dark-blue);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.montgo-cta-section .button {
    padding: 16px 32px;
    font-size: 18px;
}

.montgo-cta-section .button.secondary {
    color: white;
    border-color: white;
}

.montgo-cta-section .button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Contact Forms Sectie */
.contact-forms-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.form-container-centered {
    max-width: 800px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.form-container {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
}

.form-container.visible {
    animation: fadeIn 0.5s ease forwards;
}

.form-container:nth-child(2) {
    animation-delay: 0.2s;
}

.form-container h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--montgo-dark-blue);
}

.form-container p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--light-text);
}

.checkbox-group {
    margin-bottom: 16px;
}

.address-fields-container {
    display: none;
    margin-top: 16px;
}

.address-fields-container.show {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-col {
    display: flex;
    flex-direction: column;
}

.form-section {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-label span {
    font-size: 16px;
}

/* Fade-in animatie voor secties */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.visible {
    animation: fadeIn 0.5s ease forwards;
}

/* Extra stijlen voor FAQ pagina */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 21px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.highlight-box {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 20px 0;
}

.highlight-box p {
    margin-bottom: 0;
}

.emoji-icon {
    margin-right: 8px;
}

/* Process Steps Styling */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

.step-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 0;
}

/* Investment Calculator Styling */
.calculation-section {
    background-color: #f8f9fa;
}

.investment-calculator {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.calculator-section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-color);
}

/* Input Section */
.calculator-input-section {
    margin-bottom: 40px;
}

.calculator-input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.calculator-input-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e8eaed;
    transition: all 0.3s ease;
}

.calculator-input-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.15);
}

.input-icon {
    font-size: 36px;
    margin-right: 16px;
    min-width: 40px;
}

.input-content {
    flex: 1;
}

.input-label {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 4px;
}

.input-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

/* Divider */
.calculator-divider {
    text-align: center;
    margin: 32px 0;
    position: relative;
}

.calculator-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, #e8eaed, transparent);
}

.divider-icon {
    display: inline-block;
    background: white;
    padding: 0 16px;
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

/* Output Section */
.calculator-output-section {
    margin-bottom: 32px;
}

.calculator-output-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.calculator-output-item {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #bbdefb;
    transition: all 0.3s ease;
}

.calculator-output-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.15);
    border-color: var(--primary-color);
}

.output-label {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.output-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.output-frequency {
    font-size: 13px;
    color: var(--light-text);
    font-style: italic;
}

/* Total Section */
.calculator-total-section {
    margin-top: 40px;
}

.total-return-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(10, 132, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.total-return-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.total-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-value {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.total-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Disclaimer */
.calculation-disclaimer {
    max-width: 800px;
    margin: 32px auto 0;
    text-align: center;
}

.calculation-disclaimer p {
    background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    font-size: 16px;
    color: #856404;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Basis typografie voor mobiel */
    h1 {
        font-size: 32px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    h2 {
        font-size: 28px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    h3 {
        font-size: 21px;
        line-height: 1.4;
    }

    p {
        font-size: 16px;
        line-height: 1.6;
    }

    .container {
        padding: 0 16px;
    }

    /* Header en navigatie - styling voor mobiel specifiek */
    nav ul {
        padding: 24px 16px;
    }
    
    nav ul li a {
        font-size: 16px;
    }

    /* Hero secties */
    .hero,
    .extended-hero {
        padding: 140px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hero-buttons,
    .button-container {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .button,
    .button-container .button {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }

    .project-hero {
        padding: 160px 0 80px;
    }

    .project-hero h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 20px;
    }

    /* Cards en grids */
    .cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card-image {
        height: 240px;
        width: 100%;
        object-fit: cover;
    }

    /* About sectie */
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        max-width: 100%;
        order: 1;
    }

    .about-image {
        width: 100%;
        order: 2;
    }

    .about-image img {
        width: 100%;
        height: auto;
        min-height: 250px;
        object-fit: cover;
    }

    /* Montgo grids - BELANGRIJKE FIX VOOR AFBEELDINGEN */
    .montgo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .montgo-grid.reverse {
        direction: ltr;
    }

    .feature-image {
        width: 100%;
        height: auto;
        min-height: 250px !important;
        max-height: 400px;
        object-fit: cover;
    }

    .text-content h2 {
        font-size: 28px;
    }

    .text-content h3 {
        font-size: 24px;
    }

    .text-content p {
        font-size: 16px;
    }

    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item img {
        height: 220px;
        width: 100%;
        object-fit: cover;
    }

    /* Location highlights en features */
    .location-highlights,
    .montgo-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-highlight,
    .montgo-feature {
        padding: 24px;
    }

    /* Accessibility en text boxes */
    .accessibility-content {
        flex-direction: column;
        gap: 24px;
    }

    .text-box {
        padding: 24px;
    }

    /* Investment secties */
    .investment-options,
    .montgo-investment-section,
    .lifestyle-section,
    .location-section,
    .design-section {
        padding: 60px 0;
    }

    .section-intro {
        margin-bottom: 48px;
    }

    /* Contact sectie - BELANGRIJKE FIX */
    .contact {
        padding: 60px 0;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .contact-form,
    .brochure-options {
        width: 100%;
        padding: 24px;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 12px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    /* Footer - BELANGRIJKE FIX */
    footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 12px;
        margin-top: 8px;
    }

    .footer-links {
        font-size: 14px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .social-links {
        gap: 12px;
        margin-top: 20px;
    }

    .copyright {
        padding-top: 32px;
        font-size: 13px;
        line-height: 1.5;
    }

    .copyright p {
        margin-bottom: 12px;
    }

    /* Testimonials */
    .testimonial {
        padding: 24px;
        margin: 10px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-author img {
        margin-bottom: 12px;
        margin-right: 0;
    }

    .testimonial-controls {
        margin-top: 15px;
    }

    .testimonial-nav {
        width: 36px;
        height: 36px;
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq-intro {
        padding: 0 16px;
    }

    .faq-content {
        padding: 0 16px;
    }

    .accordion-title {
        font-size: 16px;
        padding-right: 40px;
        word-wrap: break-word;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    /* Forms grid */
    .forms-grid,
    .form-container-centered {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 28px 20px;
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-step {
        padding: 24px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .step-title {
        font-size: 18px;
    }

    /* Investment Calculator */
    .investment-calculator {
        padding: 24px 16px;
    }

    .calculator-section-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .calculator-input-grid,
    .calculator-output-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .calculator-input-item {
        padding: 20px;
    }

    .input-icon {
        font-size: 28px;
        margin-right: 12px;
    }

    .input-value {
        font-size: 20px;
    }

    .output-value {
        font-size: 28px;
    }

    .total-value {
        font-size: 40px;
    }

    .total-return-box {
        padding: 28px 20px;
    }

    .calculation-disclaimer p {
        padding: 16px 20px;
        font-size: 14px;
    }

    /* Team sectie */
    .team {
        padding: 60px 0;
    }

    .team-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-card img {
        width: 140px;
        height: 140px;
    }

    /* Newsletter sectie */
    .newsletter {
        padding: 60px 0;
    }

    .newsletter h2 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-input {
        border-radius: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .newsletter-button {
        border-radius: 8px;
        width: 100%;
    }

    /* CTA secties */
    .montgo-cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .montgo-cta-section .button {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }

    /* Highlight boxes */
    .highlight-box {
        padding: 20px;
        margin: 24px 0;
    }

    /* AFM specifieke aanpassingen */
    .afm-section {
        padding: 24px 16px;
    }

    .afm-cta {
        padding: 32px 20px;
    }

    /* Voorkom overflow en horizontale scroll */
    * {
        max-width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* WhatsApp Widget - Verbeterde versie om horizontale scroll te voorkomen */
.whatsapp-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-width: calc(100vw - 40px);
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
}

/* Zorg ervoor dat alle elementen binnen de widget box-sizing: border-box gebruiken */
.whatsapp-widget *,
.whatsapp-widget *::before,
.whatsapp-widget *::after,
.whatsapp-widget-toggle {
    box-sizing: border-box;
}

.whatsapp-widget.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.whatsapp-widget.minimized {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.whatsapp-widget-header {
    background-color: #075e54;
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.whatsapp-widget-avatar {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #128c7e;
    flex-shrink: 0;
}

.whatsapp-widget-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-widget-title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.whatsapp-widget-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.whatsapp-widget-title p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.whatsapp-widget-controls {
    display: flex;
    flex-shrink: 0;
}

.whatsapp-widget-minimize,
.whatsapp-widget-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.whatsapp-widget-minimize:hover,
.whatsapp-widget-close:hover {
    opacity: 1;
}

.whatsapp-widget-body {
    background-color: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23bbb' fill-opacity='0.1'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20.93l2.83-2.83 14.14 14.14L15.74 34 0 18.26v2.67zm0-18.32l2.83-2.83 28.28 28.28-2.83 2.83L0 5.38v-2.77zm10-10l2.83 2.83-20 20L0 20 10-7.45v-2.77zM1.41 0H40V38.59L1.41 0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 16px;
    height: 250px;
    overflow-y: auto;
}

.whatsapp-widget-message {
    max-width: 80%;
    margin-bottom: 10px;
    position: relative;
    clear: both;
}

.whatsapp-widget-message.received {
    float: left;
    background-color: white;
    border-radius: 7px 7px 7px 0;
    padding: 10px 12px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.whatsapp-widget-message.sent {
    float: right;
    background-color: #dcf8c6;
    border-radius: 7px 7px 0 7px;
    padding: 10px 12px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.whatsapp-widget-message p {
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.whatsapp-timestamp {
    font-size: 10px;
    color: #888;
    display: block;
    text-align: right;
}

.whatsapp-widget-footer {
    background-color: #f0f0f0;
    padding: 16px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-widget-button {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: auto;
    max-width: 100%;
}

.whatsapp-widget-button:hover {
    background-color: #1da855;
}

.whatsapp-widget-button svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.whatsapp-widget-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-widget-toggle:hover {
    transform: scale(1.05);
}

.whatsapp-widget-toggle svg {
    width: 36px;
    height: 36px;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-widget-toggle {
    animation: pulse 2s infinite;
}

/* Voorkom horizontale scroll op mobiel */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Responsive verbetering */
@media (max-width: 768px) {
    .whatsapp-widget {
        width: calc(100vw - 30px);
        right: 15px;
        bottom: 80px;
        max-height: calc(80vh - 80px);
    }

    .whatsapp-widget-body {
        height: 200px;
    }

    .whatsapp-widget-toggle {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-widget-toggle svg {
        width: 30px;
        height: 30px;
    }

    .whatsapp-widget-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

 /* Stijlen voor de uitbreiding */
 .callback-section {
    padding: 80px 0;
    background-color: white;
}

/* WhatsApp preview stijlen */
.whatsapp-preview {
    background-color: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23bbb' fill-opacity='0.1'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20.93l2.83-2.83 14.14 14.14L15.74 34 0 18.26v2.67zm0-18.32l2.83-2.83 28.28 28.28-2.83 2.83L0 5.38v-2.77zm10-10l2.83 2.83-20 20L0 20 10-7.45v-2.77zM1.41 0H40V38.59L1.41 0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.whatsapp-chat {
    overflow: hidden;
}

.whatsapp-message {
    max-width: 80%;
    margin-bottom: 10px;
    position: relative;
    clear: both;
}

.whatsapp-message.received {
    float: left;
    background-color: white;
    border-radius: 7px 7px 7px 0;
    padding: 10px 12px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.whatsapp-message p {
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.whatsapp-time {
    font-size: 10px;
    color: #888;
    display: block;
    text-align: right;
}

.whatsapp-button {
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
}

.whatsapp-button:hover {
    background-color: #1da855;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-preview {
        padding: 12px;
    }
}