
/* Main Content Wrapper */
.terms-page .terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
}

/* Page Title */
.terms-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #282323;
}

/* Subtitle */
.terms-page .terms-subtitle {
    font-size: 1rem;
    color: #2d2626;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Individual Sections */
.terms-page .term-section {
    margin-bottom: 24px;
}

/* Section Headings */
.terms-page .term-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #110e0e;
}

/* Section Paragraphs */
.terms-page .term-section p {
    font-size: 0.95rem;
    color: #251f1f;
    line-height: 1.6;
}


/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Tablets and Medium Screens */
@media (max-width: 768px) {
    .terms-page .terms-content {
        padding: 30px 20px;
    }

    .terms-page h1 {
        font-size: 12px;
    }

    .terms-page .terms-subtitle {
        font-size: 10px;
        margin-bottom: 24px;
    }

    .terms-page .term-section h2 {
        font-size: 10px;
    }

    .term-section li{
        font-size: 10px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .terms-page .terms-content {
        padding: 20px 16px;
    }

    .terms-page h1 {
        font-size: 10px;
    }

    .terms-page .terms-subtitle {
        font-size: 10px;
        margin-bottom: 20px;
    }

    .terms-page .term-section {
        margin-bottom: 20px;
    }

    .terms-page .term-section h2 {
        font-size: 11px;
    }

    .terms-page .term-section p {
        font-size: 10px;
    }
}