.terms-page {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.terms-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 15px;
    text-align: center;
}

.terms-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: center;
}

.terms-section {
    margin-bottom: 35px;
}

.terms-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.terms-section h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 24px;
    background-color: #007bff;
    margin-right: 12px;
    border-radius: 3px;
}

.terms-section p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.terms-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.terms-section ul li::before {
    content: '\f00c';
    /* FontAwesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 0.9rem;
    top: 3px;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 25px;
    }

    .terms-content h1 {
        font-size: 2rem;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }
}