.campaign-values-section {
    background-color: #f8f9fa; /* Light grey to contrast with white sections */
    padding: 80px 0;
}

.values-heading {
    text-align: center;
    color: #212529;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
    text-transform: capitalize;
    font-family: var(--font-02);
}

/* Red accent line under the heading to match site theme */
.values-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #dc3545; /* Campaign Red */
    margin: 15px auto 0;
    border-radius: 2px;
}

.value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

/* Hover effect for interactivity */
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: #dc3545; /* Campaign Red */
}

.value-icon-wrapper {
    width: 75px;
    height: 75px;
    background-color: rgba(220, 53, 69, 0.5); /* Light red background */
    color: #dc3545; /* Campaign Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    background-color: #dc3545;
    color: #ffffff;
}

.value-title {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-02);
}

.value-text {
    color: #555555;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-02);
}

/* Responsive Spacing fix for older Bootstrap versions */
.value-col {
    margin-bottom: 25px;
}