.value-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.value-section-title {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 10px;
    position: relative;
    z-index: 2;
}

.value-accent-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.safe-acronym {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.safe-letter {
    width: 80px;
    height: 80px;
    background: rgba(253, 234, 230, 0.086);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.safe-letter:hover {
    transform: translateY(-10px) scale(1.1);
    background: #FF6F61;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-card {
    outline: 4px solid #ff6f61;
    outline-offset: 4px;
    transition: outline 0.3s ease-in-out;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Fixed 2 columns */
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Responsive breakpoint for mobile devices */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1.5rem;
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.value-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover .value-number {
    color: rgba(0, 0, 0, 0.2);
    transform: scale(1.2);
}

.value-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.value-description {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}