.terms-and-conditions-section {
    background-color: #fff;
}

.terms-and-conditions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-and-conditions-title {
    font-family: 'Amiri Quran', serif;
    color: rgba(24, 112, 120, 0.95);
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 3.5rem;
}

.terms-and-conditions-subtitle {
    color: rgba(24, 112, 120, 0.95);
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 2.5rem;
    font-family: var(--font-main);
}

.terms-and-conditions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-and-conditions-item {
    color: rgba(24, 112, 120, 0.95);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    position: relative;
}

.terms-and-conditions-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background-color: rgba(24, 112, 120, 0.95);
    border-radius: 50%;
}

@media (max-width: 767.98px) {
    .terms-and-conditions-container {
        padding: 0 1rem;
    }

    .terms-and-conditions-title {
        font-size: 32px;
        letter-spacing: 0.15em;
        margin-bottom: 2rem;
    }

    .terms-and-conditions-subtitle {
        font-size: 18px;
        letter-spacing: 0.15em;
        margin-bottom: 1.5rem;
    }

    .terms-and-conditions-item {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        padding-left: 1.25rem;
    }

    .terms-and-conditions-item::before {
        width: 6px;
        height: 6px;
        top: 0.6em;
    }
}

