.intro {
padding: 4rem 2rem;
text-align: center;
background: linear-gradient(to bottom right, #e6f0fa, #ffffff);
border-radius: 16px;
margin: 2rem auto;
max-width: max-content;
box-shadow: 0 4px 20px rgba(0, 42, 98, 0.08);
transition: all 0.3s ease-in-out;
}

.intro h1 {
font-size: 2.5rem;
color: #002A62;
margin-bottom: 1.5rem;
line-height: 1.4;
}

.intro h2 {
font-size: 2.2rem;
color: #002A62;
font-weight: 700;
line-height: 1.4;
margin-bottom: 1.2rem;
text-align: center;
}

.intro h3 {
font-size: 1.4rem;
color: #034AA6;
font-weight: 500;
margin-bottom: 2rem;
text-align: center;
max-width: 720px;
margin-left: auto;
margin-right: auto;
}

.intro p {
font-size: 1.25rem;
color: linear-gradient(to bottom right, #034AA6, #056CF2);
font-weight: 500;
}

.intro-highlight {
background-color: #034AA6;
color: #FFFFFF !important;
font-size: 1.4rem;
padding: 1rem 1.5rem;
margin-top: 1rem;
display: inline-block;
border-radius: 8px;
}  

.mvv {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 2rem;
padding: 4rem 2rem;
background: linear-gradient(to bottom right, #034AA6, #023059);
border-radius: 16px;
max-width: 1200px;
margin: 0 auto 4rem auto;
box-shadow: 0 6px 18px rgba(0, 42, 98, 0.06);
}

.mvv-item {
background-color: #ffffff;
border-radius: 12px;
padding: 2rem;
flex: 1 1 30%;
min-width: 280px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-item:hover {
transform: translateY(-6px);
box-shadow: 0 6px 20px rgba(0, 42, 98, 0.1);
}

.mvv-item img {
width: 60px;
margin: 0 auto 1rem auto;
display: block;
}  

.mvv-item h3 {
color: #034AA6;
margin: 0 auto 1rem auto;
font-size: 1.4rem;
border-bottom: 2px solid #056CF2;
padding-bottom: 0.5rem;
display: inline-block;
}  

.mvv-item p {
color: #333;
font-size: 1rem;
line-height: 1.6;
white-space: pre-line;
text-align: left;
}  

@keyframes pulse {
    0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(5, 108, 242, 0.4);
    }
    50% {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(5, 108, 242, 0.6);
    }
    100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(5, 108, 242, 0.4);
    }
}

.intro-highlight {
animation: pulse 2.5s infinite;
transition: transform 0.3s ease;
cursor: pointer;
}  

@media (max-width: 768px) {
    .intro h2 {
        font-size: 1.5rem;
        text-align: left;
    }

    .intro h3 {
        font-size: 1.2rem;
        text-align: left;
    }
}