.core-values {
    position: relative;
    padding: 60px 100px;
    color: white;
}

.core-values:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-image: url("/resources/images/world-map.png");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

.core-values h2 {
    color: #303d6a;
}

.values-grid {
    display: flex; /* Default flex layout */
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center; /* Center items */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    position: relative; /* Ensures grid is above the SVG */
}

.value-item h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #303d6a;
}

.value-item p {
    margin: 0;
    font-size: 14px;
    text-align: center;
    max-width: 250px;
    color: black;
}