@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* ===== VALUES SECTION ===== */
.values-section {
    width: 100%;
    background: #ffffff;
    padding: clamp(60px, 6vw, 120px) 0;
}

.values-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(40px, 6vw, 120px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.values-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.values-label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #004882;
}

.values-title {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.4;
    color: #252525;
    margin: 0;
}

/* Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    width: 100%;
}

/* Card */
.values-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    min-height: 358px;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.values-card:hover {
    box-shadow: 0px 8px 32px rgba(0, 72, 130, 0.1);
}

.values-card-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.values-card-title {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 36px;
    color: #252525;
    margin: 0;
}

.values-card-desc {
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #252525;
    margin: 0;
}

.values-card-icon {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .values-inner {
        padding: 0 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }

    .values-inner {
        padding: 0 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-card-title {
        font-size: 20px;
    }

    .values-card-desc {
        font-size: 16px;
    }
}