.vc-ef8f9fe8-container {
    text-align: center;
    font-family: sans-serif;
    padding: 60px 20px;
    background: #fbfbfd; /* Light background similar to image */
}
.vc-ef8f9fe8-subtitle {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    color: #1e3a5f;
    margin-bottom: 10px;
    font-weight: 600;
}
.vc-ef8f9fe8-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
}
.vc-ef8f9fe8-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
@media (max-width: 768px) {
    .vc-ef8f9fe8-grid {
        grid-template-columns: 1fr;
    }
}
.vc-ef8f9fe8-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease;
}
.vc-ef8f9fe8-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.vc-ef8f9fe8-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.vc-ef8f9fe8-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.vc-ef8f9fe8-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}
.vc-ef8f9fe8-card-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}
.vc-ef8f9fe8-button {
    display: block;
    background: #173766; /* Dark blue from image */
    color: #fff;
    text-align: center;
    padding: 16px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    transition: background 0.3s;
    font-size: 16px;
}
.vc-ef8f9fe8-button:hover {
    background: #0f2545;
    color: #fff;
}
