.pricelist-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
    line-height: 1.6;
    max-width: 800px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pricelist-content h1 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 600;
}

.pricelist-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

.pricelist-form {
    margin-top: 40px;
}

.download-button {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.download-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.email-form {
    margin-top: 24px;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-form input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 14px;
    margin-bottom: 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.email-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.email-form button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-message,
.error-message {
    padding: 16px;
    border-radius: 6px;
    margin: 24px 0;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsieve stijlen */
@media (max-width: 768px) {
    .pricelist-content {
        padding: 24px;
        margin-top: 20px;
    }

    .pricelist-content h1 {
        font-size: 24px;
    }

    .email-form input[type="email"] {
        max-width: 100%;
    }

    .download-button,
    .email-form button {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Toegankelijkheidsverbeteringen */
@media (prefers-reduced-motion: reduce) {
    .download-button,
    .email-form button {
        transition: none;
    }

    .email-form,
    .success-message,
    .error-message {
        animation: none;
    }
}

/* Print stijlen */
@media print {
    .pricelist-form,
    .email-form,
    .download-button {
        display: none;
    }

    .pricelist-content {
        max-width: 100%;
        padding: 0;
        border: none;
        box-shadow: none;
    }
}