.mvv-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

/* Box styling */
.mvv-box {
    flex: 1;
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border-top: 8px solid transparent;
    transition: transform 0.3s;

}

.mvv-box:hover {
    transform: translateY(-5px);
}

.mvv-box h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    font-weight: bold;
}

.mvv-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Icon circle */
.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
}

/* Specific colors */
.red {
    border-top-color: #ff4600;
}

.red .icon {
    background: #ff4600;
}

.blue {
    border-top-color:#0b41be;
}

.blue .icon {
    background: #0b41be;
}

.yellow {
    border-top-color: #ff4600;
}

.yellow .icon {
    background: #ff4600;
}

/* Connector lines */
.mvv-box::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 6px;
    top: 40%;
    right: -40px;
    background: currentColor;
    border-radius: 3px;
}

.mvv-box::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: calc(40% - 3px);
    right: -48px;
    background: currentColor;
    border-radius: 50%;

}

/* Remove connector from last box */
.mvv-box:last-child::before,
.mvv-box:last-child::after {
    display: none;
}

/* Colors for connectors */
.red {
    color: #ff4600;
}

.blue {
    color: #0b41be;
}

.yellow {
    color: #ff4600;
}

.about-section {
    text-align: center;
    /* centers everything inside */
    margin: 50px auto;
}

.section-subtitle {
    color: #e63946;
    /* red */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #0a1a3c;
    /* dark navy */
    margin: 0;
}

