/* About Page Specific Styles */

#our-values {
    padding: 80px 0 0; /* Removing bottom padding to handle the blue bar */
    background: #fdfdfd;
}

#our-values .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px 30px;
}

#our-values .card {
    border-radius: 15px;
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: all 0.3s ease;
    overflow: visible; /* To allow icon wrapper to pop out */
}

#our-values .card-content {
    padding: 40px 20px 20px;
}

#our-values .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.card-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
}

#our-values h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

#our-values p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Blue bar at the bottom as seen in the image */
.about-loyalty-divider {
    height: 50px;
    background: var(--primary-color);
    width: 100%;
    margin-top: 80px;
}

@media (max-width: 768px) {
    #our-values .card {
        margin-top: 40px;
    }
}
