﻿:root {
    --legal-card-grad-left: #01105c;
    --legal-card-grad-right: #07183c;
    --legal-card-border: rgba(255,255,255,0.08);
    --legal-section-gap: clamp(10px, 2.5vw, 25px);
    --legal-page-bg: #020b1f;
    --legal-bg: url('/images/HomeImages/LegalPagesImages/terms_of_use_background.png');
    --legal-card-terms-section: linear-gradient(90deg, #3148a3 0%, #475fae 100%);
    --legal-card-text: #DBDCE1;
    --legal-card-header-text: #DBDCE1;

    --legal-section-number-color: #5672d7;
    --legal-section-number-bg: #031349; 
    --legal-section-number-border: 1.3px solid #475eba;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
/*    color: var(--card-text);*/
    background-color: var(--legal-page-bg);
    background-image: var(--legal-bg);
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
    background-position: center top;
}

.terms-page {
    padding: clamp(10px, 3.5vw, 50px) clamp(11px, 3vw, 23px);
    max-width: 980px;
    margin: 0 auto;
}

.terms-header h1 {
    margin-bottom: clamp(24px, 4vw, 40px);
    letter-spacing: .5px;
    text-align: center;
    font-size: clamp(1.3rem, 1.0rem + 1vw, 1.9rem);
    color: var(--legal-card-header-text);
}

.terms-section {
    background: linear-gradient(90deg, var(--legal-card-grad-left) 0%, var(--legal-card-grad-right) 100%);
    border: 1px solid var(--legal-card-border);
    border-radius: 14px;
    padding: 45px 28px 26px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.55);
}

    .terms-section::before {
        content: "";
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        height: 1.2px;
        background: linear-gradient(90deg, #3148a3 0%, #475fae 100%);
        opacity: .95;
        z-index: 1;
    }

.section-number {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--legal-section-number-color);
    border-radius: 50%;
    z-index: 2;
    background-color: var(--legal-section-number-bg);
    border: var(--legal-section-number-border);
}

.section-title {
    margin: 50px 0 14px;
    text-align: center;
    font-size: clamp(1.01rem, 0.7rem + 0.4vw, 1.2rem);
    letter-spacing: 1px;
    color: var(--legal-card-text);
    text-transform: uppercase;
}

.terms-section p {
    margin: 0 0 12px;
    line-height: 1.65;
    font-size: clamp(.95rem, .88rem + 0.2vw, 1rem);
    color: var(--legal-card-text);
}

.terms-section + .terms-section {
    margin-top: var(--legal-section-gap);
}

/* адаптація */
@media (max-width: 576px) {

    .terms-section {
        padding: 48px 20px 22px;
    }

    .section-number {
        width: 50px;
        height: 50px;
        top: 39px;
    }

    .terms-section::before {
        top: 39px;
    }

    .section-title {
        margin: 38px 0 12px;
        font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
    }

    .terms-header h1 {
        font-size: clamp(1.1rem, 0.9rem + 1vw, 1.6rem);
        margin-bottom: 28px;
    }
}
