

.header {
    background-color: #fcfafb;
    padding-top: 8rem;
    padding-bottom: 4rem;
    text-align: center;
}

.header .text-container {
    margin-bottom: 4rem;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.header .p-large {
    font-size: 1.1rem;
    color: #666;
}

.terms-content-section {
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.terms-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.terms-block {
    margin-bottom: 3rem;
}

.terms-block:last-child {
    margin-bottom: 0;
}

.terms-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    position: relative;
    padding-left: 1.5rem;
}

.terms-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    background: linear-gradient(to bottom, #3a9dfb, #0062cc);
    border-radius: 3px;
}

.terms-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.terms-block ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.terms-block ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.terms-block ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #3a9dfb;
    font-size: 1rem;
}


@media (max-width: 992px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .terms-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding-top: 6rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .terms-block h3 {
        font-size: 1.5rem;
    }
}
