body {
    font-family: "Poppins", sans-serif;
}

.hero {
    background: url("../images/IMG_2990.jpg") center/cover no-repeat;
    background-attachment: fixed;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: gold;
    display: block;
    margin-top: 6px;
}

.values-card {
    border-radius: 15px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.values-card:hover {
    transform: translateY(-8px);
}