/* ============================================
   Values Section - Why Donate Page
   ============================================ */

.values-section {
    background: var(--color-white);
    padding: 80px 0;
}

.values-section__header {
    margin-bottom: 56px;
}

.values-section__intro {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    line-height: 1.5;
    color: #666666;
    margin-top: 25px;
    text-align: left;
}

.values-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 56px;
}

.values-section__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.values-section__column-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-dark);
    margin: 0;
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.values-list__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.values-list__bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-primary-button);
    border-radius: 50%;
    flex-shrink: 0;
}

.values-list__text {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    line-height: 1.5;
    color: #666666;
    font-weight: 400;
}

/* Footer Text */
.values-section__footer {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    line-height: 1.5;
    color: #666666;
}

.values-section__footer p {
    margin: 0 0 1.5rem 0;
}

.values-section__footer p:last-child {
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .values-section {
        padding: 60px 0;
    }

    .values-section__header {
        margin-bottom: 40px;
    }

    .values-section__grid {
        gap: 40px;
        margin-bottom: 40px;
    }

    .values-section__intro {
        font-size: 1.25rem;
    }

    .values-list__text {
        font-size: 1.125rem;
    }

    .values-section__footer {
        font-size: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .values-section {
        padding: 50px 0;
    }

    .values-section__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .values-section__intro {
        font-size: 1.125rem;
    }

    .values-section__column-title {
        font-size: 1.125rem;
    }

    .values-list__text {
        font-size: 1rem;
    }

    .values-list__bullet {
        width: 8px;
        height: 8px;
    }

    .values-section__footer {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 40px 0;
    }

    .values-section__intro {
        font-size: 1rem;
    }

    .values-list__text {
        font-size: 0.9375rem;
    }

    .values-section__footer {
        font-size: 1rem;
    }
}
