/* Core Values Section */
.core-values {
    background-color: white;
    padding: 80px 30px;
}

.core-values h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.core-values h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.values-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.values-image {
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.values-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.values-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.3), rgba(212, 175, 55, 0.3));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.values-image:hover::before {
    opacity: 1;
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.values-image:hover img {
    transform: scale(1.05);
}