/* TERMS SECTION */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.terms-section {
    background: #f3f4f6;
    padding: 80px 16px;
}

.terms-container {
    max-width: 100%;
    margin: auto;
    background: #ffffff;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.terms-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.terms-content {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.terms-content p {
    margin-bottom: 22px;
}

.terms-content strong {
    color: #dc2626;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .terms-container {
        padding: 28px;
    }

    .terms-title {
        font-size: 28px;
    }

    .terms-content {
        font-size: 15.5px;
    }
}
