.data-ops-container {
    padding: 40px 0;
}

.data-ops-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.data-ops-left {
    flex: 1;
    min-width: 300px;
}

.data-ops-right {
    width: 380px;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .data-ops-wrapper {
        flex-direction: column;
    }
    .data-ops-right {
        width: 100%;
    }
}

/* Badge */
.data-ops-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: #202C40; /* Updated to Primary Dark Blue */
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Typography */
.data-ops-headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #202C40; /* Primary Color */
}

.data-ops-body {
    font-size: 16px;
    line-height: 1.65;
    color: #4A5568; /* Updated to Grey */
    margin-bottom: 30px;
}

/* Action Points (Service Steps) */
.data-ops-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-ops-action-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.data-ops-check-icon {
    flex-shrink: 0;
    width: 24px; /* Added circle size */
    height: 24px; /* Added circle size */
    background-color: #EBF0F2; /* Added circle background */
    border-radius: 50%; /* Added circle shape */
    display: flex; /* Centering */
    align-items: center; /* Centering */
    justify-content: center; /* Centering */
    color: #BBA364;
    font-size: 11px; /* Smaller icon size inside circle */
    margin-top: 4px;
}

.data-ops-action-content {
    display: flex;
    flex-direction: column;
}

.data-ops-action-text {
    font-weight: 600;
    color: #202C40;
    font-size: 16px;
    line-height: 1.5;
}

.data-ops-action-desc {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Card Styling */
.data-ops-card {
    background-color: #F8F9FA;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.data-ops-card-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.data-ops-card-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.data-ops-card-label {
    font-size: 20px;
    font-weight: 700;
    color: #202C40;
    line-height: 1.3;
}

.data-ops-card-subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.data-ops-outcomes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-ops-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.4;
}

.data-ops-arrow {
    font-size: 12px;
    margin-top: 5px;
    color: #BBA364;
    opacity: 0.7;
}

/* Typical Situations */
.data-ops-situations {
    margin-top: 40px;
}

.data-ops-situations-title {
    font-size: 15px; /* Updated font size */
    font-weight: 700;
    margin-bottom: 20px;
    color: #202C40;
    text-transform: uppercase; /* Added uppercase */
    letter-spacing: 0.5px; /* Added spacing */
    border-left: 3px solid #BBA364; /* Added left border accent */
    padding-left: 12px; /* Added padding for border */
}

.data-ops-situations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-ops-situation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border: 1px solid #edf2f7; /* Updated border color */
    border-radius: 6px;
    transition: all 0.3s ease;
}

.data-ops-situation-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
    border-color: #ddd;
}

.data-ops-situation-icon {
    font-size: 20px;
    color: #718096; /* Updated to Grey */
    width: 30px;
    text-align: center;
}

.data-ops-situation-text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}
