.wi-5b3eac27-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: inherit;
}

.wi-5b3eac27-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0b1a2e; /* Target Avenue Dark Navy */
    margin-bottom: 50px;
}

.wi-5b3eac27-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.wi-5b3eac27-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wi-5b3eac27-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.wi-5b3eac27-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0b1a2e;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.wi-5b3eac27-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 767px) {
    .wi-5b3eac27-wrapper {
        padding: 40px 15px;
    }
    
    .wi-5b3eac27-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .wi-5b3eac27-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}