/* /transfer-terms/css/style.css */

/* --- Variabelen gebaseerd op de rest van de site voor consistentie --- */
:root {
    --primary-color: #8A3FFC;
    --background-dark: #0F0F1A;
    --background-light: #1a1a2e;
    --border-color: #2c2c3e;
    --text-primary: #ffffff;
    --text-secondary: #aeb8d0;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- Algemene Pagina Styling --- */
.section-padding {
    padding: 60px 0;
}

.terms-section {
    font-family: var(--font-family);
    color: var(--text-secondary);
}

.container {
    max-width: 900px; /* Iets breder voor betere leesbaarheid van tekst */
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* --- De hoofdcontent-box --- */
.terms-container {
    background-color: var(--background-light);
    padding: 40px 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: left; /* Tekst links uitlijnen voor leesbaarheid */
}

/* --- Styling voor de headers en tekst --- */
.terms-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.terms-header h1 {
    color: var(--text-primary);
    font-size: 32px;
    margin: 0 0 10px 0;
}

.terms-header p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.terms-content h2 {
    color: var(--text-primary);
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.terms-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }

    .terms-container {
        padding: 30px 25px;
    }

    .terms-header h1 {
        font-size: 26px;
    }

    .terms-content h2 {
        font-size: 20px;
    }

    .terms-content p {
        font-size: 15px;
    }
}