.ms-ee429356-container {
    width: 100%;
}

.ms-ee429356-header {
    margin-bottom: 30px;
}

.ms-ee429356-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #001e4a; /* Dark navy from reference */
}

.ms-ee429356-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #3f83b6; /* Lighter blue from reference */
}

.ms-ee429356-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ms-ee429356-feature-card {
    background-color: #f7f9fd; /* Light grey/blue background */
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ms-ee429356-feature-img-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e0e5eb; /* Fallback for missing image */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-ee429356-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ms-ee429356-feature-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #001e4a;
}

@media (max-width: 768px) {
    .ms-ee429356-features-grid {
        grid-template-columns: 1fr;
    }
}
