/* Root variables with Dutch-inspired color scheme */
:root {
    --primary: #003087; /* Delft Blue */
    --secondary: #FF6200; /* Dutch Orange */
    --accent: #E6F0FA; /* Soft Blue */
    --background: #F9F9F9; /* Light Gray */
    --text: #1A252F; /* Dark Slate */
}

/* Content body styles */
.content-body {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.content-body p {
    margin-bottom: 20px;
}

.content-body h2, .content-body h3 {
    margin-top: 40px;
}

.content-body h2 {
    font-size: 24px;
    color: var(--text);
}

.content-body h3 {
    font-size: 19px;
    color: var(--primary);
}

.conclusion {
    margin-top: 35px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.cta {
    text-align: center;
    padding: 18px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    margin-top: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta:hover {
    background-color: #00205b;
    transform: scale(1.05);
}

.cta p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

ul li strong {
    color: var(--text);
    font-weight: 600;
}

ul ul {
    list-style-type: circle;
    padding-left: 25px;
    margin-top: 8px;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-body {
        padding: 0 20px;
        font-size: 15px;
    }

    .content-body h2 {
        font-size: 22px;
    }

    .content-body h3 {
        font-size: 18px;
    }

    .content-body ul {
        padding-left: 20px;
    }

    .cta {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .content-body {
        font-size: 14px;
    }

    .content-body h2 {
        font-size: 20px;
    }

    .content-body h3 {
        font-size: 16px;
    }

    .cta {
        padding: 12px;
        font-size: 15px;
    }
}