body {
    line-height: 1.6;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-header {
    background: linear-gradient(to bottom, #10101064, #10101064), url(../images/Rectangle\ 28.png);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 30px;
    margin-top: 10rem;
    border-radius: 15px;
}

.terms-title {
    font-family: var(--subHeading-font);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.terms-welcome, .terms-agreement {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-content {
    background-color: white;
    border-radius: 10px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    margin-bottom: 30px;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-date {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: var(--p-font);
}

.terms-date span{
    display: inline;
    font-family: var(--subHeading-font);
}

.terms-section-title {
    font-family: var(--subHeading-font);
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    padding-bottom: 10px;
}

.terms-text {
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-list {
    padding-left: 25px;
    margin-bottom: 15px;
}

.terms-list-item {
    list-style-type: disc;
    margin-bottom: 8px;
    font-family: var(--p-font);
}

.terms-link {
    color: #0066cc;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-header {
        padding: 40px 15px;
    }

    .terms-title {
        font-family: var(--subHeading-font);
        font-size: 2rem;
    }

    .terms-welcome, .terms-agreement {
        font-size: 0.9rem;
    }

    .terms-content {
        padding: 20px;
    }

    .terms-section-title {
        font-family: var(--subHeading-font);
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .terms-header {
        padding: 30px 10px;
    }

    .terms-title {
        font-family: var(--subHeading-font);
        font-size: 1.8rem;
    }

    .terms-welcome, .terms-agreement {
        font-size: 0.85rem;
    }

    .terms-content {
        padding: 15px;
    }

    .terms-section-title {
        font-family: var(--subHeading-font);
        font-size: 1.2rem;
    }

    .terms-text, .terms-list-item {
        font-size: 0.9rem;
    }
}